-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Catch The Insect</title>
</head>
<body>
<div class="screen">
<h1>Catch The Insect</h1>
<button class="button" id="start-button">Play the Game!</button>
</div>
<div class="screen">
<h1>What is your 'favourite' insect?</h1>
<ul class="bug-list">
<li>
<button class="choose-bug-button">
<p>A fly</p>
<img src="https://pngimg.com/uploads/fly/fly_PNG3952.png" alt="fly">
</button>
</li>
<li>
<button class="choose-bug-button">
<p>A mosquito</p>
<img src="https://pngimg.com/uploads/mosquito/mosquito_PNG18154.png" alt="mosquito">
</button>
</li>
<li>
<button class="choose-bug-button">
<p>A spider</p>
<img src="https://pngimg.com/uploads/spider/spider_PNG23.png" alt="spider">
</button>
</li>
<li>
<button class="choose-bug-button">
<p>A cockroach</p>
<img src="https://pngimg.com/uploads/roach/roach_PNG12150.png" alt="cockroach">
</button>
</li>
</ul>
</div>
<div class="screen game-container" id="game-container">
<h3 id="time" class="time">Time: 00:00</h3>
<h3 id="score" class="score">Score: 0</h3>
<h5 id="message" class="message">
Have you noticed yet? <br>
You are playing an impossible game!
</h5>
</div>
<script src="script.js"></script>
</body>
</html>