-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotre_quizz.html
45 lines (34 loc) · 1.61 KB
/
notre_quizz.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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Le Quizz</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="notre_quizz.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
</head>
<body>
<div class="border"></div>
<a href="index.html" class="back">Retour à l'accueil</a>
<div id="timer" class="timer_css"></div>
<div id="quiz-container">
</div><progress id="progressBar" max="20" value="-1"></progress>
<!-- Section pour la question -->
<div class="question" id="question-text">
<p>Question</p>
</div>
<!-- Section pour les options -->
<div class="options" id="options-container"></div>
<!-- Prévois déjà le design du bouton "suivant" pour passer à la prochaine question -->
<div class="button-container">
<button id="next-button" class="disabled noTransition">Suivant</button>
<button id="check-button" disabled class="noTransition">Valider</button>
<button id="replay-button" style="display: none;">Rejouer</button>
</div>
<script type="module" src="game.js"></script>
</div>
</body>