Flux-web / index.html
GarGerry's picture
Update index.html
e2a6404 verified
raw
history blame
579 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guess the Number Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="game-container">
<h1>Guess the Number Game</h1>
<p>Try to guess the number between 1 and 100!</p>
<input type="number" id="guess" placeholder="Enter a number">
<button id="submit">Submit Guess</button>
<p id="result"></p>
<p id="attempts"></p>
</div>
<script src="script.js"></script>
</body>
</html>