-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquestion.html
More file actions
44 lines (44 loc) · 1.35 KB
/
question.html
File metadata and controls
44 lines (44 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homepage</title>
<script defer src="./script_question.js"></script>
<link rel ="stylesheet" type="text/css" href="BE.css">
</head>
<body>
<header>
MAXI QUIZ : le quiz des super sportifs
</header>
<main>
<div type="text" id="intitule">
Que déclara Giraldi lors de coup de boule sur Materazzi
</div>
<br>
<br>
<br>
<section>
<article>
<input type="radio" id = "radio1" name = "question" checked></input>
<label for="radio1" id = "reponse1">Réponse 1</label>
</br>
<input type="radio" id = "radio2" name = "question"></input>
<label for="radio2" id = "reponse2">Réponse 2</label>
</br>
<input type="radio" id = "radio3" name = "question"></input>
<label for="radio3" id = "reponse3">Réponse 3</label>
</br>
<input type="radio" id = "radio4" name = "question"></input>
<label for="radio4" id = "reponse4">Réponse 4</label>
</br>
<div>
<button type="button" id="valider" onclick="valider_question()"> Valider </button>
</div>
</article>
<br>
<br>
<br>
</section>
</main>
</body>
</html>