-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathminesweeper.html
65 lines (63 loc) · 2.2 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="ko">
<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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="CSS/base.css" />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/minesweeper.css" />
<title>Mine Sweeper</title>
</head>
<body>
<header class="header">
<h1 class="title a11y-hidden">Mini Game</h1>
<nav class="navigation">
<div class="game-mode">
<button type="button" class="game-mode-button" data-mode="easy">
EASY
</button>
<button
type="button"
class="game-mode-button current-mode"
data-mode="normal"
>
NORMAL
</button>
<button type="button" class="game-mode-button" data-mode="hard">
HARD
</button>
</div>
<h2 class="display display-title">
<i class="fas fa-bomb"></i> Mine Sweeper <i class="fas fa-bomb"></i>
</h2>
<div class="wrapper">
<span class="display-round">Round: 1</span>
<span class="display-score">Score: 0</span>
</div>
</nav>
</header>
<section class="minesweeper-wrap">
<div class="minesweeper-board"></div>
</section>
<footer class="footer">
<a href="/" class="home">HOME</a>
<button type="button" class="restart">Restart</button>
</footer>
<script type="module" src="js/minesweeper.mjs"></script>
</body>
</html>