-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (23 loc) · 923 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Number Guessing Game</title>
<link rel="icon" type="image/x-icon" href="images/logo.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space Mono|Playfair Display">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,800;1,700;1,800&display=swap">
</head>
<body>
<div id="display">
<h1>Number Guessing Game</h1>
</div>
<div id="interactive">
<h3>Pick a number 1 to 100:</h3>
<h3 id="response">???</h3>
<input id="guess" type="number" placeholder="Your Guess Here">
<button id="check">Guess</button>
</div>
<script src="script.js"></script>
</body>
</html>