forked from aruvham/javascript-minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 754 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (24 loc) · 754 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
26
27
<!DOCTYPE html>
<html>
<head>
<title>Minesweeper</title>
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="game.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>MINESWEEPER</h1>
<div class="container">
<div class='menu'>
<!-- <td>High Score : </td> -->
<table class="display display-score"><tr><td>SCORE: 0</td></tr></table>
</div>
<div class="menu">
<table class="display display-counter"><tr><td>MINES: 0</td></tr></table>
<div class="button button-center"></div>
<table class="display display-timer"><tr><td>TIME: 0</td></tr></table>
</div>
</div>
</body>
</html>