-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (36 loc) · 1.41 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Minesweeper</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script type="text/javascript" src="lib/board/src/Board.js"></script>
<script type="text/javascript" src="lib/board/src/Square.js"></script>
<script type="text/javascript" src="lib/board/src/Cursor.js"></script>
<script type="text/javascript" src="src/input.js"></script>
<script type="text/javascript" src="src/game.js"></script>
<script type="text/javascript" src="src/app.js"></script>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
</head>
<body>
<div id="game-container">
<div id="title-container">
<h1>m i n e s w e e p e r</h1>
</div>
<div id="info-container">
<a href="http://github.com/harimohanraj89/minesweeper" target="_blank">source code</a>
</div>
<ul id="instructions">
<li>Click to reveal a square, right-click to mark as a mine</li>
<li>Select a difficulty to get started</li>
</ul>
<div id="menu-container">
<div class="new-game" id="new-game-easy">easy</div>
<div class="new-game" id="new-game-medium">medium</div>
<div class="new-game" id="new-game-hard">hard</div>
</div>
<div id="board-container"></div>
<div id="hud-container"></div>
</div>
</body>
</html>