-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
35 lines (34 loc) · 1.2 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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title>Minesweeper - The Open Web HTML5 Game!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="style/site.css" type="text/css" />
</head>
<body>
<div class="body-wrapper">
<div id="header">
<img src="style/img/Bomb.png" />
</div>
<div id="selector">
<div>
<input onclick="window.location = 'play.html?4';" type="button" value="4 X 4" >
</div>
<div>
<input onclick="window.location = 'play.html?8';" type="button" value="8 X 8" >
</div>
<div style="clear: both;"></div>
<div>
<input onclick="window.location = 'play.html?16';" type="button" value="16 X 16" >
</div>
<div>
<input onclick="window.location = 'play.html?32';" type="button" value="32 X 32" >
</div>
</div>
</div>
</body>
</html>