-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.42 KB
/
index.html
File metadata and controls
53 lines (47 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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="jquery-3.5.1.min.js"></script>
<script src="flag.js"></script>
<script src="counter.js"></script>
<script src="chrono.js"></script>
<script src="script.js"></script>
<script src="gameRules.js"></script>
<script src="https://kit.fontawesome.com/864a21a265.js" crossorigin="anonymous"></script>
<title>Questions pour un Drapeau</title>
</head>
<body>
<h2><i class="far fa-flag"></i> Questions pour un Drapeau ! <i class="far fa-flag"></i></h2>
<div id="scoreBoard">
<span id="level"></span>
<span id="score"></span>
<span id="clic"></span>
</div>
<div id="points">
<div id="image"> </div>
<p></p>
<button>Next</button>
</div>
<div id="introduction">
<p id="texte"></p>
<button id="next">Next</button>
<button id="skipIntroduction">Skip</button>
</div>
<div id="flags">
<span id="time"></span>
<div id="actualFlag" class="drapeau"> </div>
</div>
<div id="joker">
<button>Joker (1pt)</button>
</div>
<div id="skip">
<button>Abandonner</button>
</div>
<div id="validation">
<button id="valider" value="valider">Valider</button>
</div>
</body>
</html>