-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 827 Bytes
/
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Devine le Nombre</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Devine le Nombre Mystère</h1>
<div class="game-container">
<p>Devinez un nombre entre 1 et 100</p>
<div class="input">
<input type="number" id="nombre" min="1" max="100" placeholder="Entrez un nombre">
<button id="submitBtn" type="button">Soumettre</button>
</div>
<div id="message" class="message"></div>
<div id="attempts" class="attempts">Nombre d'essais : 0</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>