-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Whack-a-mole</title>
<link rel="stylesheet"
href="style.css">
</head>
<body>
<div id="container">
<div id="game">
<header><img src="header2.png"></header>
<div id="hud">
<div id="time">
<p class="timerText">Timer</p>
<p id="timeText">15</p></div>
<div id="score">
<p class="scoreText">Score</p>
<p id="scoreText">0</p></div>
</div>
<div id="lawn">
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
</div>
<div id="rawGameOver">
<div id="gameOver"><h2></h2></div>
</div>
<!-- <div class="hole up" id="testBtn">Test</div> -->
<div class="credit"><a href="http://www.freepik.com">Designed by brgfx / Freepik</a></div>
</div>
<script src="app.js"></script>
</div>
</body>
</html>