-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.16 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.16 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="https://freesvg.org/img/bomb.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
<title>Minesweeper</title>
</head>
<body>
<h1>Minesweeper</h1>
<div id="board"></div>
<div class="score">
<div id="best">Best Score: 0 </div>
<div id="score">Score: 0</div>
</div>
<div id="gameOverModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h1>Game Over!</h1>
<img src="img/a99a_hnvy_201215.jpg" alt="" width="300px">
<h2>Score: <span id="finalScore">0</span></h2>
</div>
</div>
<div id="victoryModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h1>You Win!</h1>
<!-- <img src="img/w.webp" alt="" width="300px"> -->
<h2>Score: <span id="finalScoreVictory">0</span></h2>
</div>
</div>
<script src="app.js"></script>
</body>
</html>