-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (45 loc) · 1.4 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
<!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>Guess The Number!</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<article>
<button class="again">Play Again</button>
<p>(Between 1 and 20)</p>
</article>
<p class="main-heading">Guess The Number!</p>
<div class="secret">
<p class="secret-val">?</p>
</div>
</header>
<section>
<article>
<input type="number">
<button class="check">Check!</button>
</article>
<article class="score-board">
<p class="guess-review">Start guessing...</p>
<div>
<p>Score: <span class="score">20</span></p>
<p>Highscore: <span class="highscore">0</span></p>
</div>
</article>
</section>
<div class="overlay hidden"></div>
<div class="card score-board hidden">
<button class="close-card-btn">×</button>
<p class="guess-review">Start guessing...</p>
<div>
<p>Score: <span class="score">20</span></p>
<p>Highscore: <span class="highscore">0</span></p>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>