-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_project.html
28 lines (27 loc) · 1 KB
/
02_project.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
<!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="02_project.css">
</head>
<body>
<div class="wrapper">
<h1 style="font-style: italic;">Number Guessing Game</h1>
<p>Try and guess a random number between 1 to 100.</p>
<p>You have 10 attempts to guess the right number.</p>
<form class="form">
<label for="guessField" id="guess">Guess a number:</label>
<input type="text" id="guessField" class="guessSubmit" placeholder="Enter your guess">
<button id="subt">Submit Guess</button>
</form>
<div class="resultParas">
<p>Previous Guesses: <span class="guesses"></span></p>
<p>Guesses Remaining: <span class="lastResult">10</span></p>
<p class="lowOrHigh"></p>
</div>
</div>
<script src="02_project.js"></script>
</body>
</html>