-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (31 loc) · 1.2 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
32
33
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Démineur</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<form action="jeu.html" method="get">
<div class="choix_niveau">
<div class="choix_niveau_boutons">
<div class="bouton_niveau">
<input id="debutant" type="radio" name="difficulte" value="debutant" checked>
<label for="debutant">Débutant</label>
</div>
<div class="bouton_niveau">
<input id="intermediaire" type="radio" name="difficulte" value="intermediaire">
<label for="intermediaire">Intermédiaire</label>
</div>
<div class="bouton_niveau">
<input id="expert" type="radio" name="difficulte" value="expert">
<label for="expert">Expert</label>
</div>
</div>
<input class="bouton_jouer" type="submit" value="Jouer">
</div>
</form>
</body>
</html>