-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
26 lines (26 loc) · 1023 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tap the Black Tiles</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="shortcut icon" href="icon-128.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<h1 id="score">0</h1>
<p id="game-over">
<br />
Game Over<br />
Final score : <em id="final-score"></em><br />
High score : <em id="high-score"></em><br /><br />
<strong id="new-high-score">New High Score !!</strong>
</p>
<a id="restart" href="">Restart</a>
<a id="quit" href="index.html">Quit</a>
</body>
<script type="text/javascript" src="jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="fastclick.js"></script>
<script type="text/javascript" src="helpers.js"></script>
<script type="text/javascript" src="script.js"></script>
</html>