-
Notifications
You must be signed in to change notification settings - Fork 1
/
pendu.html
80 lines (39 loc) · 2.2 KB
/
pendu.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Pendu</title>
<link rel="stylesheet" type="text/css" href="accueil/pendu.css"/>
<script type="text/javascript" src="accueil/pendu.js"></script>
</head>
<body>
<h1>Pendu</h1>
<br/>
<div id ="boite">
<div class="flex">
<button class="button" id="1" onclick="afficher(1)">
<span>Difficulté 1 </span></button>
<button class="button" id="2" onclick="afficher(2)"><span>Difficulté 2 </span></button>
<button class="button" id="3" onclick="afficher(3)"><span>Difficulté 3 </span></button>
</div>
<div class="flex" id="themesDifficulte1">
<h2>Voici les thèmes :</h2>
<button class="buttonTheme" onclick="javascript:location.href='difficulte1/d1t1.html'"><span>Ecole</span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte1/d1t2.html'"><span>Couleurs</span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte1/d1t3.html'"><span>Thème 3 </span></button>
</div>
<div class="flex" id="themesDifficulte2">
<h2>Voici les thèmes :</h2>
<button class="buttonTheme" onclick="javascript:location.href='difficulte2/d2t1.html'"><span>Ecole </span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte2/d2t2.html'"><span>Corp Humain </span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte2/d2t3.html'"><span>Thème 3 </span></button>
</div>
<div class="flex" id="themesDifficulte3">
<h2>Voici les thèmes :</h2>
<button class="buttonTheme" onclick="javascript:location.href='difficulte3/d3t1.html'"><span>Thème 1 </span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte3/d3t2.html'"><span>Thème 2 </span></button>
<button class="buttonTheme" onclick="javascript:location.href='difficulte3/d3t3.html'"><span>Thème 3 </span></button>
</div>
</div>
</body>
</html>