-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Number Guessing Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Your link to your CSS file -->
<link rel="stylesheet" href="./styles.css">
<!-- Your Javascript file goes here -->
<script src="./app.js" async defer></script>
<!-- font links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet">
</head>
<body>
<!-- your HTML should go here -->
<nav>
<h1>>>Number Guessing Game<<</h1>
<p>Guess a number between 1 - 100.</p>
<p>After every guess you'll be notified if your guess is too high or too low. Each guess will appear below to remind you what you guessed.</p>
<p>Ready. Set. GUESS!</p>
</nav>
<form id="guessForm">
<input id="input" name="guessed-number" type="text" placeholder="Enter thy guess human.."/>
<button id="submitButton">Cast Guess</button>
</form>
<div id="responseContainer">
</div>
<div id="guesses-container">
<H4>Previous Guesses:</H4>
<ul id="playerGuesses">
</ul>
</div>
</body>
</html>