-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·36 lines (36 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="js/html5shiv.min.js"></script>
<script src="js/html5shiv-printshiv.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<meta charset="utf-8">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<form class="navbar-form navbar-left">
<div class="form-group">
<input type="text" class="form-control" placeholder="Start">
<input type="text" class="form-control" placeholder="End">
</div>
<button type="submit" class="btn btn-default">Get Route</button>
</form>
</div>
</nav>
<div class="container" style="margin-top:80px;">
<div class="jumbotron">
<h1>Cleanest Route</h1>
<div id="map">
</div>
</div>
</div>
<script src="js/cleanestroute.js"></script>
</body>
</html>