-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (41 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Memory Chimp</title>
<link rel="stylesheet" href="style.css">
<script src="svg.min.js" type="text/javascript"></script>
</head>
<body>
<div id="scoreboard">
<div id="score-container">0</div>
<div id="best-container">0</div>
</div>
<div class="levels">
<div class="level" id="level4"></div>
<div class="level" id="level5"></div>
<div class="level" id="level6"></div>
<div class="level" id="level7"></div>
<div class="level" id="level8"></div>
<div class="level" id="level9"></div>
<h2 id="instructions">Tap the numbers in order!</h2>
</div>
<div id="canvas"></div>
<div id="game-over" class="overlay">
<div>
<h1>Game over!</h1>
<button id="retry">Retry this level</button>
</div>
</div>
<div id="you-won" class="overlay">
<div>
<h1>Congrats,<br />you won!</h1>
<button id="start-over">Start over</button>
</div>
</div>
<script src="board.js" type="text/javascript" charset="utf-8"></script>
<script src="scoreboard.js" type="text/javascript" charset="utf-8"></script>
<script src="stopwatch.js" type="text/javascript" charset="utf-8"></script>
<script src="game.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>