-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
54 lines (46 loc) · 1.92 KB
/
index.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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>word pluck - a browser based typing game</title>
<meta name="description" content="word pluck - A browser based typing game" />
<meta name="keywords" content="typing game, typing accuracy test" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="js/create.js"></script>
<script src="js/words.js"></script>
<script src="js/main.js"></script>
<link rel="shortcut icon" href="images/favicon.png" type="image/png" />
<meta property="og:image" content="images/thumb.jpg" />
</head>
<body>
<canvas id="stage" width="500" height="500"></canvas>
<h1 id="notice">Hello!</h1>
<div class="container">
<div id="controls">
<h1 id="score"> </h1>
<ul id="stats">
<li class="level"><h1 id="level"> </h1><label>level</label></li>
<li class="words"><h1 id="words"> </h1><label>words</label></li>
<li class="accuracy"><h1 id="accuracy"> </h1><label>accuracy</label></li>
<li class="speed"><h1 id="speed"> </h1><label>words / min</label></li>
<li class="tips opt"><input type="checkbox" id="tips" /><label for="tips">Tips?</label></li>
<li class="sound opt"><input type="checkbox" id="sound" checked="checked" /><label for="sound">Sound?</label></li>
</ul>
</div>
<h3 id="tip"> </h3>
<div id="start">
<h2>word pluck — when it rains, start typing.</h3>
<p>Pause / Un-pause the game by pressing the <strong>Space</strong> key.</p>
<p>Enable <strong>Tips</strong>, to get a peek of the upcoming word (reduces scores slightly).</p>
<p>Turn your speakers down a little! You can turn the sound on / off using the checkbox on the right.</p>
<br />
<p>
<button id="btn-start">start</button>
</p>
</div>
<footer class="footer">
<a href="https://github.com/knadh/wordpluck" class="nadh">knadh/wordpluck</a>
</footer>
</div>
</body>
</html>