-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
42 lines (28 loc) · 890 Bytes
/
quiz.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Quiz</title>
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<p class="header" id="score">score</p>
<p class="header" id="progress"></p>
<div class="containerQuiz">
<h1 id="questionNumber"></h1>
<p id="question"></p>
<div class="buttons">
<button id="answer1"></button>
<button id="answer2"></button>
<button id="answer3"></button>
</div>
<br/>
<div id="divResult">
<p id="result"></p>
</div>
<br/>
<button id="next" class="button">Question suivante</button>
</div>
<script src="static/js/quiz.js"></script>
</body>
</html>