-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 1.77 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
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="#" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>Guess The Animal!</title>
</head>
<body>
<header>
<h1>Guess the Animal!</h1>
<p class="description">(Press to mute music)</p>
<button class="btn again">Again!</button>
<div class="animal hidden">?</div>
<button class="muteBtn"></button>
<button class="btn start">GO!</button>
<button class="btn next hidden">Next!</button>
</header>
<main>
<section class="left hidden">
<input type="text" class="guess" />
<button class="btn check">Is it?</button>
</section>
<section class="middle">
<p class="comment">Press GO! to start the game!</p>
<p class="infoSpecies hidden"><br />Species:</p>
<br /><br />
<p class="riddle hidden"></p>
</section>
<section class="right hidden">
<p class="message">Waiting...</p>
<p class="label-score">Score: <span class="score">0</span></p>
<br />
<p class="label-highscore">
Highscore: <br /><br /><span class="highscore">250</span>!
</p>
</section>
</main>
<footer>
© Michał Kalke
<p class="contribution">
Background by
<a href="https://www.freepik.com/vectors/jungle-illustration"
>macrovector</a
>
</p>
</footer>
<script src="script.js"></script>
<audio autoplay loop id="song">
<source src="music/music.mp3" />
</audio>
</body>
</html>