-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 922 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 922 Bytes
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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href='https://fonts.googleapis.com/css?family=Poppins:wght@400;600&display=swap' rel='stylesheet'>
<title>Document</title>
</head>
<body>
<div class="container">
<h3>I am thinking of a number between 1-100.</h3>
<h3>can You guess it</h3>
<input type="text" placeholder="Num" id="guess"><br>
<button onclick="play()" id="myBtn">Guess</button>
<p id="message1">No. of Guesses: 0</p>
<p id="message2">Guessed Numbers are: None</p>
<p id="message3"></p>
</div>
<script src="script.js"></script>
</body>
</html>