-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
42 lines (33 loc) · 1.41 KB
/
index.htm
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
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Path Finding</title>
<!-- Bootstrap core CSS -->
<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.3.0/css/font-awesome.min.css">
<link href="assets/css/path.css" rel="stylesheet">
</head>
<body>
<div id="grid" class="text-center"></div>
<form class="form-inline">
<button id="reset" class="btn">RESET</button>
<button id="clear" class="btn">CLEAR</button>
<button id="strt" class="btn">START</button>
<select id="sMethod" class="form-control">
<option value="0">Fewest Steps</option>
<option value="1">Prefer Straight</option>
<option value="2">No Diagonal</option>
<option value="3">Direct</option>
</select>
</form>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="assets/js/path.js"></script>
</body>
</html>