-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 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
<!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>Guess My Number</title>
</head>
<body>
<header class="header">
<h1>Guess My Number</h1>
</header>
<main>
<section class="section-main">
<article class="box">
<div class="box-header">
<button class="btn again">Again!</button>
<h2>(Between 1 and 20)</h2>
</div>
<div class="box-middle">
<h2>Guess A Number!</h2>
<div class="number">?</div>
</div>
<div class="box-footer">
<div class="box-footer-left">
<input type="number" class="guess" />
<button class="btn check">Check!</button>
</div>
<div class="box-footer-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>
</div>
</div>
</article>
</section>
</main>
<!-- The JS script file -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>