-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.61 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
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="wrapper">
<div id="game-over-overlay"></div>
<div id="game-start-overlay"></div>
<div id="round-next-overlay"></div>
<div id="game-over">
<h1>GAME OVER</h1>
<div id="final-score">Final score</div>
<img src="img/fever.gif" width="200" height="200"/>
<p>
<button id="play-again">Play Again</button>
</p>
</div>
<div id="game-start">
<h1>Harvard referencing game</h1>
<p id="num-games">x rounds</p>
<p id="first-game">first game</p>
<button id="play-start">Start</button>
</div>
<div id="round-next">
<img src="img/dancing_student.gif" width="120" height="120"/>
<p id="next-round">next round</p>
<button id="play-next">Play</button>
</div>
<div id="game-name"></div>
<div id="score"></div>
<div id="game-div"></div>
<div id="instructions">
<div>
move with <span class="key">arrows</span> or <span class="key">wasd</span>
</div>
</div>
</div>
<img id="shelf" src="img/bookshelf.gif" style="display:none">
<script type="text/javascript" src="js/resources.js"></script>
<script type="text/javascript" src="js/input.js"></script>
<script type="text/javascript" src="js/sprite.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>