-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.old
49 lines (42 loc) · 1.51 KB
/
index.html.old
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
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery-3.2.1.js" charset="utf-8"></script>
<script src="js/scripts.js" charset="utf-8"></script>
<link rel="stylesheet" href="css/main.css">
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Floor Explosion Game</title>
</head>
<body>
<div class="wrapper">
<div class="game" id="minesweeper1">
<h1>Floor Asplosion!</h1>
<h3>a game of chance</h3>
<form id="game-settings">
<div class="form-group">
<label>Size</label>
<select id="board-size" class="select" name="size">
<option value="5" selected="selected">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
</select>
</div>
<!-- <div class="form-group">
<label>Mines</label>
<select class="select" name="size">
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
</select>
</div> -->
<button type="submit" id="newGame">New Game</button>
</form>
<div class="gameboard" oncontextmenu="return false"></div>
</div><!--end of game div-->
</div><!--end of wrapper div-->
</body>
</html>