-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Number Guessing Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body style="background-color: #212121; color: #fff;">
<div id="wrapper">
<h1>Number Guessing Game</h1>
<p>Try and guess a random number between 1 and 100.</p>
<p>You have 10 attempts to guess the right number.</p>
<br />
<form class="form">
<label for="guessField" id="guess">Guess a number</label>
<input type="text" id="guessField" class="guessField" />
<button type="submit" id="subt">Guess</button><!-- used as a button in the form -->
</form>
<div class="resultParas">
<p>Previous Guesses: <span class="guesses"></span></p>
<p>Guesses Remaining: <span class="lastResult">10</span></p>
<p class="lowOrHi"></p>
</div>
</div>
</body>
<script src="index.js"></script>
</html>