-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Minesweeper</title>
<meta name="author" content="Devon Bernard">
<meta name="description" content="A simple online game of Minesweeper.">
<meta name="keywords" content="minesweeper, videogame, online">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- External Style Sheets -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:900,400" type="text/css">
<!-- Internal Style Sheets -->
<link type="text/css" rel="stylesheet" href="css/main.css"/>
<link type="text/css" rel="stylesheet" href="css/dist/minesweeper.min.css"/>
</head>
<body>
<div id="minesweeper" class="container-fluid"></div>
<p>Left-click reveal tiles</p>
<p>Right-click to flag tiles</p>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="js/dist/minesweeper.min.js"></script>
<script type="text/javascript">
var ms = new Minesweeper("#minesweeper");
ms.Start();
</script>
</body>
</html>