-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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 My Number!</title>
</head>
<body>
<div class="container">
<header>
<h1>Guess My Number!</h1>
<p class="between">(Between 1 and <span id="max-number">20</span>)</p>
<button class="btn again">Again!</button>
</header>
<main>
<div class="number">?</div>
<section class="left">
<input type="number" class="guess" placeholder="Enter your guess" />
<button class="btn check">Check!</button>
</section>
<section class="right">
<p class="message">Start guessing...</p>
<p class="label-score">💯 Score: <span class="score">20</span></p>
<p class="label-highscore">🥇 Highscore: <span class="highscore">0</span></p>
<p class="timer">⏱️ Time: 60s</p>
<select id="difficulty" class="difficulty">
<option value="20">Easy</option>
<option value="50">Medium</option>
<option value="100">Hard</option>
</select>
</section>
</main>
<footer>
<p>© 2024 Sandun LB. | <a href="about.html">About</a></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>