Update index.html
Browse files- index.html +13 -13
index.html
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
</head>
|
9 |
<body>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
|
19 |
-
|
20 |
</body>
|
21 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Guess the Number Game</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
+
<div class="game-container">
|
11 |
+
<h1>Guess the Number Game</h1>
|
12 |
+
<p>Try to guess the number between 1 and 100!</p>
|
13 |
+
<input type="number" id="guess" placeholder="Enter a number">
|
14 |
+
<button id="submit">Submit Guess</button>
|
15 |
+
<p id="result"></p>
|
16 |
+
<p id="attempts"></p>
|
17 |
+
</div>
|
18 |
|
19 |
+
<script src="script.js"></script>
|
20 |
</body>
|
21 |
</html>
|