-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equi="X-UA-Compatible" contents="IE=edge"/>
<meta name="viewport" content ="width=device-width, initialscale=1.0"/>
<title> Document </title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1 ><b>Whack a Mole</b></h1>
<h2>Score: <span id="score"></span></h2>
<h2>Time: <span id="time"></span></h2>
<div class="board" >
<div class="box" id="0"></div>
<div class="box" id="1"></div>
<div class="box" id="2"></div>
<div class="box" id="3"></div>
<div class="box" id="4"></div>
<div class="box" id="5"></div>
<div class="box" id="6"></div>
<div class="box" id="7"></div>
<div class="box" id="8"></div>
</div>
<div id="appr"><b>Start the game</b></div>
<button id="restart">Start </button>
</div>
<script src="scripts.js"></script>
</body>
</html>