-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1.09 KB
/
index.html
File metadata and controls
38 lines (30 loc) · 1.09 KB
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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Number Guessing Game</title>
<link rel="shortcut icon" type="images/png" href="images/icon.png">
</head>
<body>
<header><h1>Guess Any Number</h1></header>
<div class="container">
<div class="hint"><h3>Hint: It is between 1 and 10.</h3></div>
<div class="form-ui" action="">
<input class="number-input" type="number" value="" placeholder="">
<input class="submit-btn" type= "submit" value="Guess">
</div>
<!-- <div class="you-won">
<h2 class="winning-msg">
8, that's the number
<br> Tries: 2
</h2>
<button class="play-again">Play Again</button>
</div> -->
<div class="footer">©</div>
</div>
<script src="script.js"></script>
</body>
</html>