-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.3 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
<!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>Minesweeper</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="https://github.com/Ambyjkl/minesweeper"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="top">
<h1>Minesweeper</h1>
<div class="row"><div class="king"></div><div id="high" class="digital"></div></div>
</div>
<form id="goForm" class="row">
<input type="text" id="heightInput" placeholder="Height">
<input type="text" id="widthInput" placeholder="Width">
<input type="text" id="mineInput" placeholder="Mines">
<button>Go!</button>
</form>
<div class="row game">
<div class="bbox">
<div class="hud box">
<div id="mineCounter" class="digital">
0
</div>
<div id="reset" class="smile"></div>
<div id="flag" class="cell flagged"></div>
<div id="timer" class="digital">!!!
</div>
</div>
<table id="boardTab" class="box"></table>
</div>
</div>
<script src="script.js"></script>
</body>
</html>