-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 827 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 827 Bytes
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
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/style.css">
<script src="scripts/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="container">
<h1 id="title">Minesweeper</h1>
<p>A HTML, CSS & javascript project</p>
<p>Difficulty: <span id="diff">Medium (80 Bombs)</span></p>
<button data-diff="Easy" onClick='difficultyClick(0, "Easy (50 Bombs)")'>Easy</button>
<button data-diff="Medium" onClick='difficultyClick(1, "Medium (80 Bombs)")'>Medium</button>
<button data-diff="Hard" onClick='difficultyClick(2, "Hard (140 Bombs)")'>Hard</button>
<div id="divider">
<div id="grid">
</div>
</div>
</div>
<h1 id="score">Score: <span id="scount">0</span></h1>
<script src="scripts/scripts.js"></script>
</body>
</html>