-
Notifications
You must be signed in to change notification settings - Fork 0
/
level10.html
51 lines (42 loc) · 1.55 KB
/
level10.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 name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../css/game.css" />
<link rel="icon" href="../icons/guessthenum.ico">
<title>Guess The Number</title>
</head>
<body>
<header>
<h1>Guess The Number</h1>
<p class="between">(From -1000 To 1000)</p>
<p class="level">Level 10</p>
<button class="gamenav chooselevel">Choose Level</button>
<button class="btn again">Again</button>
<div class="number">?</div>
</header>
<main>
<section class="left">
<input type="number" class="guess" />
<button class="btn check">Check</button>
</section>
<section class="right">
<p class="message">Start guessing...</p>
<p class="label-score"><span class="emoji">🎯</span> Score: <span class="score">15</span></p>
<p class="label-highscore">
<span class="emoji">🎖️</span> Highscore: <span class="highscore">0</span>
</p>
</section>
</main>
<script src="../TheJS/game.js"></script>
<div class="bottom-container">
<h3 id="copyright">© 2023 Ryan<h3>
</div>
<br>
<div class="topnav">
<button type="button" class="gamenav"><a class="navtext" href="../about.html">About Me</a></button>
<button type="button" class="gamenav"><a class="navtext" href="../email.html">Contact Me</a></button>
</div>
</body>
</html>