-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<link rel="stylesheet" href="./src/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet">
</head>
<body>
<h1 id="title"> Split the Skull!! </h1>
<div>
<h2>
Click
<button id="start">start</button>
to play!
</h2>
</div>
<div>
<h2>score: <span id="score">0</span></h2>
</div>
<div>
<h2><span id="timer">0</span> seconds left.</h2>
</div>
</div>
<div class="grid">
<div id="hole0" class="hole">
<div id="mole0" class="mole"></div>
</div>
<div id="hole1" class="hole">
<div id="mole1" class="mole"></div>
</div>
<div id="hole2" class="hole">
<div id="mole2" class="mole"></div>
</div>
<div id="hole3" class="hole">
<div id="mole3" class="mole"></div>
</div>
<div id="hole4" class="hole">
<div id="mole4" class="mole"></div>
</div>
<div id="hole5" class="hole">
<div id="mole5" class="mole"></div>
</div>
<div id="hole6" class="hole">
<div id="mole6" class="mole"></div>
</div>
<div id="hole7" class="hole">
<div id="mole7" class="mole"></div>
</div>
<div id="hole8" class="hole">
<div id="mole8" class="mole"></div>
</div>
</div>
<!--TODO: Add the missing holes and moles. -->
<script src="./src/index.js"></script>
</body>
</html>