-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.36 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
<!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 href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<main class="container mt-5">
<h1 class="text-center mb-4">Guess the Number Game</h1>
<section class="row justify-content-center">
<article class="col-md-6">
<div class="card">
<div class="card-body">
<p id="message" class="mb-3">I'm thinking of a number between 1 and 100. Can you guess it?</p>
<div class="input-group mb-3">
<input type="number" id="guessInput" class="form-control" placeholder="Enter your guess" aria-label="Guess">
<button id="guessButton" class="btn btn-primary">Guess</button>
</div>
<p id="attempts" class="mb-0">Attempts: 0</p>
</div>
</div>
</article>
</section>
</main>
<script src="script.js"></script>
</body>
</html>