-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 2.76 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Quiz</title>
<meta charset="UTF-8">
<!-- Custom stylesheet + bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js" async></script>
<script src="quiz.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous" async></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-primary">
<div class="panel-heading">
<div class="row">
<div class="col-md-10">
<h2 id="titre_quiz"></h2>
</div>
<div class="col-md-2">
<h2 id="timer" class="orange"></h2>
</div>
</div>
</div>
<div class="panel-content">
<div id="instructions">
<p>
<ul>
<li>Le temps de réponse est <strong>chronométré </strong>et compte pour <span id="coef">..</span>% du score final.</li>
<li>Chaque question a <strong>une seule bonne réponse.</strong></li>
<li>Une fois cochée, la réponse <strong>ne peut pas être modifiée</strong>.</li>
</ul>
</p>
</div>
<div id="quiz"></div>
<button id="restartButton" onclick='window.location.reload()' type='button' class='btn btn-default'>Refaire le test</button>
</div>
<div class="panel-footer text-center">
<div class="progress"></div>
<button id='startButton' onclick='startGame()' type='button' class='btn btn-primary'>Commencer le test</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>