-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 762 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Number Guessing Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Number Guessing Game</h1>
<p>Guess a number between 1 and 100</p>
<div class="game-area">
<input type="number" id="guessInput" min="1" max="100" placeholder="Enter your guess" />
<button id="guessButton">Guess</button>
<button id="resetButton">Reset Game</button>
</div>
<div id="hint" class="hint"></div>
<div id="attempts" class="attempts"></div>
</div>
<script src="script.js"></script>
</body>
</html>