-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathind.html
32 lines (29 loc) · 988 Bytes
/
ind.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whac-a-mole</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Your Score: </h2>
<h2 id="score">0</h2>
<h2>Time Left: </h2>
<h2 id="time-left">60</h2>
<div class="grid">
<div class="square" id="1"></div>
<div class="square" id="2"></div>
<div class="square" id="3"></div>
<div class="square" id="4"></div>
<div class="square" id="5"></div>
<div class="square" id="6"></div>
<div class="square" id="7"></div>
<div class="square" id="8"></div>
<div class="square" id="9"></div>
</div>
<audio id="hit-sound" src="audio/158945__carlmartin__jembay-hit-4-center.wav"></audio>
<audio id="game-over" src="audio/173859__jivatma07__j1game_over_mono.wav"></audio>
<script src="app.js"></script>
</body>
</html>