forked from jontrainor/minesweeper-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 935 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="msgame.css">
</head>
<body>
<div class="startview">
<div class="instructionsContainer">
<div class="instructions">
<div class="instructionsTitle">Instructions</div>
<div class="instructionsContents">
There are 100 mines to be swept. Numbers indicate how many mines are touching that square. Flag a mine by clicking while holding the shift key. Find them all.
<a class="" href="https://github.com/jontrainor/minesweeper-clone">View source on github</a>
</div>
</div>
<div class="startButton">Start</div>
</div>
</div>
<div class="gameoverview">
<div class="gameOverContainer">Exploded</div>
<div class="controlsContainer">
<div class="restartButton">Restart</div>
</div>
</div>
<div class="mainview"></div>
</body>
<script src="jquery-2.1.0.min.js"></script>
<script src="msgame.js"></script>
</html>