forked from yomanfosta/Detour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 1.81 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Detour! App</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/style.css">
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAyLJxhrTkAmRaTe8tUR2dA6ayI3fqMA14&sensor=true">
</script>
<script src="maps.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<section class="header">
<div class="logo">
</div>
</section>
<section class="info">
<input class="info-input" id="start-loc" type="text" name="start-location" autofocus required placeholder="Start Location"></input>
<input class="info-input" id="end-loc" type="text" name="end-location" required placeholder="Final Destination"></input>
<p class="distance-sent"> Let's go up to <input class="dist-input" id="distance" type="number" name="distance" required value="20"></input> miles off course! </p>
</section>
<div class="menu-area">
<div class="icon">
<p class="menu-text">MENU</p>
<ul class="menu">
<li class="spread">
<a class="unit restaurants" href="#">1</a>
</li>
<li class="spread">
<a class="unit gas-stations" href="#">2</a>
</li>
<li class="spread">
<a class="unit sites" href="#">3</a>
</li>
<li class="spread">
<a class="unit" href="#">4</a>
</li>
</ul>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src="js/scripts.js"></script>
<div id="directions"></div>
</div>
<div id="map-canvas"></div>
</body>
</html>