blob: 16ab664a468e5ec3d6a0741e79fa9f9870513bb6 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>cacharle - minesweeper</title>
<link rel="stylesheet" type="text/css" href="../../style.css"/>
<meta charset="utf-8"/>
<link rel="icon" type="image/png" href="../../favicon.png" />
</head>
<body><div id="page-wrapper">
<h1>minesweeper</h1>
<div>
before start
size:
<input type="range"/>
mine rate:
<input type="range"/>
<button>start</button>
</div>
<div>
during
<div>timer</div>
<button>start</button>
</div>
<canvas id="minesweeper-canvas"></canvas>
</div></body>
<script src="script.js" type="text/javascript"></script>
</html>
|