-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (50 loc) · 2.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="QL4-kayEdC8zDx3sqF0Z73n8UQPw7rXrOVJiEvtOASg" />
<title>💣 Minesweeper</title>
<meta name="description" content="Play Minesweeper Online">
<meta name="keywords" content="minesweeper, online game, free online game, old game, old minesweeper">
<meta name="author" content="Styro457">
<link rel="icon" type="image/x-icon" href="/assets/icon.ico">
<link rel="stylesheet" href="game-style.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title" id="title">
<img src="assets/images/mine-logo.png" class="mine-icon" draggable="false">
<span>Minesweeper</span>
<img src="assets/images/mine-logo.png" class="mine-icon" draggable="false">
</div>
<div class="game" id="game">
<div class="timer-box animation">
<div class="timer" id="timer">0:00</div>
</div>
<div class="table unselectable" id="table"></div>
</div>
<div class="buttons unselectable">
<div class="difficulty-buttons">
<div class="difficulty-panel">
<button type="button" class="button" onclick="start(9, 9, 10)" onmouseover="">Easy</button>
<p class="difficulty-info">9/9</p>
</div>
<div class="difficulty-panel">
<button type="button" class="button" onclick="start(16, 16, 40)">Normal</button>
<p class="difficulty-info">16/16</p>
</div>
<div class="difficulty-panel">
<button type="button" class="button" onclick="start(30, 16, 99)">Hard</button>
<p class="difficulty-info">30/16</p>
</div>
</div>
<div class="how-to-play-button-container">
<button type="button" class="button how-to-play-button">How to Play</button>
</div>
</div>
<a href="https://github.com/Styro457/Minesweeper" class="github-logo"><img src="assets/images/github-logo.png" class="github-logo"></a>
<script src="audio.js"></script>
<script src="timer.js"></script>
<script src="game.js"></script>
</body>
</html>