-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 931 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 931 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Whack a Mole</title>
<link rel="stylesheet" href="style.css">
<script async type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="block">
<div class="hud" id="tm">Время: 30</div>
<div class="hud" id="sc">Очки: 0</div>
<div class="inner">
<div class="card" id="c1" onclick="clickBtn(this)">-</div>
<div class="card" id="c2" onclick="clickBtn(this)">-</div>
<div class="card" id="c3" onclick="clickBtn(this)">-</div>
<div class="card" id="c4" onclick="clickBtn(this)">-</div>
<div class="card" id="c5" onclick="clickBtn(this)">-</div>
<div class="card" id="c6" onclick="clickBtn(this)">-</div>
<div class="card" id="c7" onclick="clickBtn(this)">-</div>
<div class="card" id="c8" onclick="clickBtn(this)">-</div>
<div class="card" id="c9" onclick="clickBtn(this)">-</div>
</div>
</div>
</body>
</html>