-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
62 lines (54 loc) · 1.73 KB
/
Copy pathIndex.html
File metadata and controls
62 lines (54 loc) · 1.73 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
58
59
60
61
62
<!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">
<link rel="stylesheet" href="style.css">
<title>Guess the number</title>
</head>
<body>
<section class="parent">
<!-- AGAIN AND BETWEEN SECTION. -->
<div class="first-sec">
<div class="btn-again">
<button onclick="" id="again">Again</button>
</div>
<div class="bwtn-number">
<h4 class="">
< Between 1 to 20 Numbers. >
</h4>
</div>
</div>
<!-- GUESS THE NUMBER TITTLE. -->
<div class="gues-numr">
<h1>Guess The Number.🎁</h1>
</div>
<!-- NUMBER SECTION. -->
<div class="show">
<h1 id="guess-number">0</h1>
<div class="hide">
<h1>💡</h1>
</div>
</div>
<!-- HIGH, LOW & CONGRATULATE TITTLE. -->
<div class="poster">
<h3 id="high" class="h-number"></h3>
<h3 id="low" class="l-number"></h3>
<h1 id="correct" class="congratulate"><span></span></h1>
</div>
<!-- INPUT AND ATTEMP SECTION. -->
<div class="nmr-input nmr-atm">
<input id="input-field" type="number">
<div class="attempt">
<h4>💥Attempt: <span id="attempt-count">0</span> </h4>
</div>
</div>
<!-- CHECK BUTTON SECTION. -->
<div class="check">
<button id="check-btn">Check!</button>
</div>
</section>
<script src="index.js"></script>
</body>
</html>