-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>Hex Grid</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/slate/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="dist/css/hex.css" />
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="dist/js/hex.js"></script>
<script src="maze.js"></script>
</head>
<body>
<div class="container" style="margin-top:20px; text-align:center;">
<div class="btn-group">
<button type="button" class="btn btn-default" id="DFS">DFS</button>
<button type="button" class="btn btn-default" id="BFS">BFS</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default" id="Ani">Animate</button>
<button type="button" class="btn btn-success" id="Gen">Generate</button>
</div>
</div>
<div class="container" style="margin-bottom:20px;">
<div class="hexMaze" style="width:820px; margin:auto;"></div>
</div>
<div class="container" style="text-align:center;">
<h6>© 2014 - Neil Vallon</h6>
<a href="https://github.com/NeilVallon/HexGrid">
[ Github ]
</a>
</div>
</body>
</html>