-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.53 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mine Sweeper</title>
<link href="https://fonts.googleapis.com/css?family=Sunflower:300" rel="stylesheet">
<link href="/src/scss/style.scss" rel="stylesheet">
</head>
<body>
<div id="app">
<header>
<h1>Mine Sweeper</h1>
<p id="timer">00:00</p>
</header>
<div id="game-menu" class="no-current-game">
<button id="btn-game-new" class="btn">New Game</button>
<div id="difficulties">
<button id="btn-game-easy" class="btn btn-smaller btn-difficulties">Easy</button>
<br>
<button id="btn-game-normal" class="btn btn-smaller btn-difficulties">Normal</button>
<br>
<button id="btn-game-hard" class="btn btn-smaller btn-difficulties">Hard</button>
</div>
<button id="btn-game-abort" class="btn hidden">Abort</button>
</div>
<div id="counter">
0
</div>
<main>
<div id="board"></div>
</main>
<footer>
<div>
<p>Copyright 2018 ~ 2024 ©
<a href="https://www.yannschmidt.com" target="_blank">Yann Schmidt</a> •
<a href="https://github.com/ekarious/minesweepers/typescript">Source code</a> • version 1.2.2 • Pure Typescript
</p>
</div>
<div>
<!-- Right Side -->
</div>
</footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>