This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quizz2.html
92 lines (90 loc) · 3.06 KB
/
quizz2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Loca the pug's car </title>
<link rel="stylesheet" href="css/foundation.css">
<audio id="fort" src="fort.mp3" preload="auto"></audio>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/foundation.min.js"></script>
<div class="top-bar">
<div class="top-bar-left">
<ul class="dropdown menu" data-dropdown-menu>
<li class="menu-text">Le Quizz Debile</li>
<li>
<a href="http://lequizzdebile.toile-libre.org/index.html">Menu</a>
</li>
<!--<li><a href="http://lequizzdebile.toile-libre.org/quizz.html">Quizz n°1</a></li>
<li><a href="http://lequizzdebile.toile-libre.org/quizz3.html">Quizz n°2</a></li>-->
</ul>
</div>
</div>
</head>
<body>
<div style="text-align:center">
<h1>Le super quizz.</h1>
<br>
<h4>1: Snap pedi pedi pedi, ... ... ...</h4>
<form>
<fieldset>
<input type="text" id="q1" value="">
</fieldset>
</form>
<br>
<button onclick="question1()">Envoyer</button>
<p id="zone1"></p>
<p id="zone1b"></p>
<h4>2: Rule n°1: The doctor ...</h4>
<form>
<fieldset>
<input type="text" id="q2" value=""><br>
</fieldset>
</form>
<button onclick="question2()">Envoyer</button>
<p id="zone2"></p>
<p id="zone2b"></p>
<h4>3: Qu'est-ce qui est petit, et marron?</h4>
<form>
<fieldset>
<input type="text" id="q3" value=""><br>
</fieldset>
</form>
<button onclick="question3()">Envoyer</button>
<p id="zone3"></p>
<p id="zone3b"></p>
<h4>4: Quel est le deuxieme nom de Perceval le Gallois?</h4>
<form>
<fieldset>
<input type="text" id="q4" value=""><br>
</fieldset>
</form>
<button onclick="question4()">Envoyer</button>
<p id="zone4"></p>
<p id="zone4b"></p>
<h4>5: ... , c'est la vie!</h4>
<form>
<fieldset>
<input type="text" id="q5" value=""><br>
</fieldset>
</form>
<button onclick="question5()">Envoyer</button>
<p id="zone5"></p>
<p id="zone5b"></p>
<br>
<!--<button style="height:50px" onclick="dispResultat()">Récompense</button>-->
<span id="retourMenu" />
<br>
<h2 id="zoneResultat"></h2>
</div>
<script src="js/quizz2.min.js"></script>
<br>
<!--<script src="js/vendor/jquery.min.js"></script>-->
<script>
$(document).foundation();
</script>
</body>
</hmtl>