-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquizz.html
More file actions
44 lines (41 loc) · 1.42 KB
/
quizz.html
File metadata and controls
44 lines (41 loc) · 1.42 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
<html>
<head>
<meta charset="utf-8">
<style>
td{font-family:tahoma;font-size:12px;}
div{font-family:tahoma;font-size:12px;}
</style>
</head>
<body>
<br/><br/>
<center>
<b>Mon projet</b>
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
<div id="tmp">time</div>
<div id=regles>
<b>Choisissez votre defi : </b>
<table>
<tr><td>
<input id="button1" type='button' value='Defi 1' style='width:100%'></td>
<td>vous avez 2 minutes pour repondre a un maximum de question
<br/>chaque bonne reponse vous ajoute 4 secondes
<br/>et les mauvaises reponses vous penalisent de 2 secondes</td></tr>
<tr><td colspan='2'><hr>
</td>
<tr><td><input id="button2" type='button' value='Defi 2' style='width:100%'></td>
<td>20 secondes par question. Pas de penalite mais le jeu s'arrete au bout de 5 erreurs</td></tr>
</table>
</center>
</div>
<script src="questions.js" language="javascript"></script>
<script src="choixQuestions.js" language="javascript"></script>
<script src="Timer.js" language="javascript"></script>
<script src="button.js" language="javascript"></script>
<script src="projetChoixdéfi.js" language="javascript"></script>
<script src="highlighter.js" language="javascript"></script>
<script src="Lpop.js" language="javascript"></script>
<script src="test.js" language="javascript"></script>
</body>
</html>