-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 957 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vanilla Minesweeper</title>
<meta name="description" content="Minesweeper built with vanilla JS">
<meta name="author" content="Alex Paxton">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400;700&display=swap" rel="stylesheet">
</head>
<body>
<h1>Minesweeper</h1>
<nav>
<button type="button" class="button" id="view-high-scores">High Scores</button>
<button type="button" class="button" id="start-new-game">New Game</button>
</nav>
<div class="page-container">
<div class="page-header">
<div class="game-timer" id="game-timer">0</div>
<div class="game-status" id="game-status">😎</div>
</div>
<div class="game-container" id="game-container"></div>
</div>
<script src="minesweeper.js"></script>
</body>
</html>