-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.45 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minesweeper</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<form id="custom">
<div class="black-bg">
<div class="select-bar">
<h3>Custom</h3>
<h2 class="X_button">X</h2>
<label for="rows">가로줄: </label>
<input id="rows" type="number" min="5" max="50" value="9"><br>
<label for="cols">세로줄: </label>
<input id="cols" type="number" min="5" max="20" value="9"><br>
<label for="mines">지뢰 갯수: </label>
<input id="mines" type="number" min="1" max="750" value="10"><br><br>
<button class="submit" type="button">확인</button>
</div>
</div>
</form>
<h1>Minesweeper</h1>
<div class="option">
<form id="level">
<select class="level" onchange="changeLevel()">
<option value="easy">easy</option>
<option value="normal">normal</option>
<option value="hard">hard</option>
<option value="custom">custom</option>
</select>
</form>
<div></div>
</div>
<div class="board"></div>
<script src="app.js"></script>
</body>
</html>