-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Le pendu 😵</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body onload="Event_Loaded()">
<main>
<section>
<button class="ActionButton" onclick="Event_newWord()">Nouveau mot</button>
<select name="" id="difficulty" class="ActionButton" onchange="Event_UpdateDifficulty()">
<option value="1">Facile</option>
<option value="2">Normal</option>
<option value="3">Difficile</option>
</select>
</section>
<img id="pendu"></img>
<h2 id="WordToGuess"></h2>
<div id="VirtualKeyboard"></div>
<button class="InfoButton" id="message" onclick="Event_newWord()"></button>
</main>
<script src="scripts/events.js"></script>
<script src="scripts/game.js"></script>
<script src="scripts/dictionary.js"></script>
</body>
</html>