-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvi.html
36 lines (33 loc) · 1.44 KB
/
vi.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
34
35
36
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Verbes Irréguliers - Niveaux de ceinture</title>
<link rel="stylesheet" href="css/vi.css">
</head>
<body>
<button id="theme-toggle">Changer de thème</button>
<div class="container">
<h1><u>Verbes Irréguliers | révision</u></h1>
<h2>Choisissez votre niveau :</h2>
<div class="button-container">
<button class="neumorphic-button white" id="white-belt">Ceinture Blanche</button>
<button class="neumorphic-button yellow" id="yellow-belt">Ceinture Jaune</button>
<button class="neumorphic-button orange" id="orange-belt">Ceinture Orange</button>
<button class="neumorphic-button green" id="green-belt">Ceinture Verte</button>
<button class="neumorphic-button blue" id="blue-belt">Ceinture Bleue</button>
<button class="neumorphic-button brown">Ceinture Marron</button>
<button class="neumorphic-button black">Ceinture Noire</button>
</div>
<div id="questionnaire">
<h2 id="questionnaire-title"></h2>
<div id="question-container"></div>
<button id="next-btn" class="neumorphic-button">Suivant</button>
<div id="result"></div>
<div id="summary"></div>
</div>
</div>
<script src="js/vi.js"></script>
</body>
</html>