-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.13 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
<!--
Music from Pixabay
Sound from Zapsplat.com
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/zombie.png">
<link rel="stylesheet" href="style.css">
<title>Zombie Game</title>
</head>
<body>
<div class="sound">
<button class="sound-btn">
<img src="img/sound.png" alt="">
</button>
<button class="muted-btn">
<img src="img/muted.png" alt="">
</button>
</div>
<div class="score">
<span>Score: </span>
<span class="score-num">0</span>
</div>
<div class="result">
<div class="content">
<h2 class="score-num">0</h2>
<p>Points</p>
<div class="btn">
<button class="start-game-btn">Start Game</button>
</div>
</div>
</div>
<canvas class="canvas"></canvas>
<script defer src="script.js"></script>
</body>
</html>