-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1015 Bytes
/
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
<!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" />
<title>Guess The Number</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Guess The Number!</h1>
<p id="header"><em>Choose a number between 1 and 30</em></p>
<form id="guessNum" class="flex-form">
<label for="getNum" class="form-el"></label>
<input
type="number"
name="getNum"
id="input-number"
class="bigger-box"
min="1"
max="30"
placeholder="Enter your number"
required
/>
<button type="submit" id="enter" class="btn bigger-box">Let's Play!</button>
<button type="reset" id="reset" class="btn bigger-box">Play Again</button>
<span class="show-num"></span>
<span id="hint"></span>
<span id="success"></span>
</form>
</div>
<script src="app.js"></script>
</body>
</html>