-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (26 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Whack A Mole!</title>
<link
href="https://fonts.googleapis.com/css?family=Amatic+SC:400,700"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Whack-a-mole! <span class="score">0</span></h1>
<button onClick="startGame()">Start!</button>
<div class="game">
<div class="hole hole1"><div class="mole"></div></div>
<div class="hole hole2"><div class="mole"></div></div>
<div class="hole hole3"><div class="mole"></div></div>
<div class="hole hole4"><div class="mole"></div></div>
<div class="hole hole5"><div class="mole"></div></div>
<div class="hole hole6"><div class="mole"></div></div>
</div>
<script src="script.js"></script>
</body>
</html>