-
Notifications
You must be signed in to change notification settings - Fork 7
/
instructions.html
49 lines (47 loc) · 2.27 KB
/
instructions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{PUKKA} WordBeater- Instructions</title>
<meta name="author" content="Bentil Shadrack, qbentil">
<meta name="description" content="Typing game to boost youer speed of typing">
<meta name="keywords" content="WordBeater, typing game, qbentil, pukka pukkatech">
<link rel="stylesheet" href="./css/style.css">
<!-- Favicons -->
<link href="./img/favicon.png" rel="icon">
</head>
<body>
<div class="container">
<div id="home" class="flex-center flex-column">
<h1><span class="code">{</span>PUKKA <span class="code">}</span> Type </h1>
<div class="dev flex-center flex-column">
<small id="welcome">Game Instructions</small>
<p class="text- people">
1. Select you preferred Level to play. <br>
<small>
<span class="code">Easy</span> ------------------ 15s per word
<br> <span class="code">Medium</span> ---------------- 10s per word
<br> <span class="code">Hard</span> ------------------ 5s per word
</small><br><br>
2. Type each word in the given time to score. <br>
<br>3. To play again, just type the current word. <br> <i><small class="code">Note:</small></i><small id="welcome">Your score will reset.</small>
</p><br><br>
<!-- <h1 id="counter" class="text-center">0</h1> -->
</div>
<button onclick="goto('index')" class="btn">Go Home</button>
<button onclick="goto('level')" class="btn">Play Game</button>
</div>
</div>
<div class="footer">
<div id="footer-body" class="flex-center flex-column">
<p>PUKKA TECHONOLOGIES © <span id="year"> <script>
document.write(new Date().getFullYear());
</script></span></p>
<a href="http://qbentil.com" target="_blank">Made with ❤ @Themanbentil
</a>
</div>
</div>
<script src="./js/counter.js"></script>
</body>
</html>