-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
38 lines (33 loc) · 1.15 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
<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 class="wrapper">
<div class="instructions">
<div> <b>A / left arrow</b> - <span class="red">move left</span> </div>
<div> <b>D / right arrow</b> - <span class="red">move right</span> </div>
<div> <b>W / up arrow</b> - <span class="red">move up</span> </div>
<div> <b>S / down arrow</b> - <span class="red">move down</span> </div>
<div> <b>Space</b> - <span class="red">set a tower</span> </div>
</div>
<div class="score">
Your Score: <span id="score"></span>
</div>
</div>
<div id="game-over-overlay">
</div>
<div id="game-over">
<h1>GAME OVER</h1>
<button id="play-again">Play Again</button>
</div>
<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>