-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 1.6 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
<!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">
<title></title>
<link rel="stylesheet" href="./style.css" >
</head>
<body>
<div class="screen">
<h1>Catch The Insect</h1>
<button id="start-btn" class="btn">Play</button>
</div>
<div class="screen">
<h1>What is your favorite insect</h1>
<ul class="insects-list">
<li>
<button class="choose-insect-btn">
<p>Spider</p>
<img src="./spider.png" alt="Spider" >
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Cricket</p>
<img src="./cricket.png" alt="Cricket" >
</button>
</li>
<li>
<button class="choose-insect-btn">
<p>Ant</p>
<img src="./ant.png" alt="Ant" srcset="">
</button>
</li>
</ul>
</div>
<div class="screen container" id="game-container">
<h3 class="time" id="time">Time 00:00</h3>
<h3 class="score" id="score">Score 0</h3>
<h5 id="message" id="message">Annoyed Yet? This is an impossible game</h5>
</div>
<script src="./script.js"></script>
</body>
</html>