forked from fongwama/EduPalu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz_start.html
37 lines (37 loc) · 1.33 KB
/
quiz_start.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz ~ EduPalu ~ FCRM & Fongwama</title>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/quiz_style.css" rel="stylesheet" />
<script type="text/javascript" src="data/quiz_questions.json"></script>
<script type="text/javascript" src="js/quiz_engine.js"></script>
</head>
<body onload="quiz_start();">
<header class="jumbotron">
<a href="index.html">
<img src="img/logo.png" alt="logo EduPalu" class="center-block" />
</a>
</header>
<section class="container">
<h1>Quiz</h1>
<p>
Pour chacune des <span id="welcome_questions_nb"></span> questions suivantes, choisissez la réponse correcte.
</p>
<p>
Plus vous serez rapide, plus vous marquerez des points !
</p>
<form action="quiz_play.html">
<button class="btn btn-primary center-block" type="submit">Commencer la partie</button>
</form>
</section>
<footer>
<p>
<a href="http://www.fcrm-congo.com">FCRM</a> & <a href="http://www.fongwama.com">Fongwama</a> - 2016
</p>
</footer>
</body>
</html>