-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
35 lines (34 loc) · 1.08 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
31
32
33
34
35
<!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 Game</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<script src="script.js" defer></script>
</head>
<body>
<h1>Guess The Number</h1>
<p class="para">Hint!! The number is in between 0 to 9 </p>
<div class="wrapper">
<div class="chanceleft">
<p>You got total <span>10 chances</span></p>
</div>
<div class="actualval">
<p></p>
</div>
<div class="input">
<form class="input_form">
<input type="text" name="" id="txt" placeholder="Input any number">
<input type="submit" value="Done" class="submit">
</form>
</div>
<div class="answer">
<p>Ya!! you got it correct</p>
</div>
<div class="extrapara"></div>
</div>
</body>
</html>