-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (45 loc) · 1.43 KB
/
index.html
File metadata and controls
57 lines (45 loc) · 1.43 KB
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
57
<!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 my number app</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="btn-again">
<button class="again">Again</button>
</div>
<div class="btn-reset">
<button class="reset">Reset</button>
</div>
<div class="underline"></div>
<div class="secret-number">
<h1 class="number">?</h1>
</div>
<div class="operation">
<div class="guess">
<input class="guess-inp" type="number">
</div>
<div class="check">
<button class="check-btn">CHECK</button>
</div>
</div>
<div class="result-show">
<div class="message-div">
<h2 class="message">start guessing...
</h2>
</div>
<div class="score-div">
<h3><span class="h3-score">score:</span> <span class="score">0</span></h3>
</div>
<div class="highscore-div">
<h3><span class="h3-highscore">highscore: </span><span class="highscore">0</span></h3>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>