-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 972 Bytes
/
index.html
File metadata and controls
36 lines (34 loc) · 972 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Zombie Squash!!</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/stopWatchModule.js" defer></script>
<script src="js/resources.js" defer></script>
<script src="js/app.js" defer></script>
<script src="js/engine.js" defer></script>
</head>
<body>
<div class="btnContainer">
<button id="playBtn" class="btn" type="button">Play Music</button>
<button id="stopBtn" class="btn" type="button">Stop Music</button>
<button id="nextBtn" class="btn" type="button">Play Another Track</button>
<button id="resetBtn" class="btn" type="button">New Game</button>
</div>
<div class="timerDisplay">
<div id="hoursElapsed" class="output">
00:
</div>
<div id="minutesElapsed" class="output">
00:
</div>
<div id="secondsElapsed" class="output">
00.
</div>
<div id="deciSecondsElapsed" class="output">
00
</div>
</div>
</body>
</html>