-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Guess The Number</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/aca3bdaa69.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="script.js"></script>
</head>
<body class="text-center">
<nav class="navbar navbar-light bg-light">
<!-- Navbar content -->
<a class="navbar-brand " href="#">Guess The Number</a>
</nav>
<main>
<h1 class="banner p-3">1.2.3.</h1>
<div class="form-group ">
<input id="number-guess" class="form-control form-control-lg" type="number" placeholder="What's your guess?">
</div>
<div id="result">
<!-- This is where the result will be-->
</div>
<button type="button" id="number-submit" class="btn btn-lg btn-dark">Check Me</button>
<button type="button" id="restart-game" class="btn btn-lg btn-warning">Restart</button>
<div id="history">
<!-- This is where the guess history will be-->
</div>
</main>
</body>
</html>