-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminesweeper.html
38 lines (38 loc) · 948 Bytes
/
minesweeper.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>IMPOSSIBRU_MINESWEEPER</title>
<link rel="stylesheet" href="minesweeper.css">
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap"
rel="stylesheet">
</head>
<body>
<div id="container"></div>
<div id="describe">The best Minesweeper u ever played</div>
<div id="inputs">
<div class="insult">
<p id="insults">mhmmm</p>
</div>
<div class="level">
<button id="noob">Noob</button>
<button id="beginner">Beginner</button>
<button id="impossibru">IMPOSSIBRU</button>
<h1>CHOOSE DAT LEVEL HUR</h1>
</div>
<table>
<tr>
<td>CHANGE BOXES PER SIDE</td>
<td><input id="boxChange"></td>
</tr>
<tr>
<td>CHANGE BOMB AMOUNT</td>
<td><input id="bombChange"><td>
</tr>
</table>
<button id="reveal">Reveal all</button>
<button id="replay">Replay Game</button>
</div>
<script src="optimize.js"></script>
</body>
</html