-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 1.35 KB
/
index.html
File metadata and controls
40 lines (32 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 2023 ADDITION: SVG one-liner to use the system's bomb emoji as an icon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💣</text></svg>">
<title>Démineur</title>
</head>
<body>
<button id="themeSwitcher">Changer de thème</button>
<h1>Démineur</h1>
<div id="conteneurDemineur">
<div id="interface">
<select id="selectionDifficulte">
<option value="0">Débutant (9x9 cases, 10 bombes)</option>
<option value="1">Intermédiaire (16x16 cases, 40 bombes)</option>
<option value="2">Expert (22x22 cases, 100 bombes)</option>
<option value="3">Maître (30x30 cases, 250 bombes)</option>
</select>
<button id="commencerPartie" onClick="nouvellePartie()">▶</button>
<span id="timer">00:00</span>
</div>
<div id="grille">
<table id="tableGrille">
</table>
</div>
</div>
<footer><img src="img/xp/start.png" alt="Start"></footer>
<script type="module" src="/main.js"></script>
</body>
</html>