-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·135 lines (80 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantox Find a Route</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<link href="Font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="style/main.css">
</head>
<body id="top">
<header>
<h1>Find a Route v1.0</h1>
</header>
<section>
<div class="mainWrap">
<div class="textKicker">
<div class="firstWord">
<h2>Make</h2>
</div>
<div class="secondWord">
<h2>Your</h2>
</div>
<div class="thirdWord">
<h2>Own</h2>
</div>
<div class="fourthWord">
<h2>Plan</h2>
</div>
<div class="fifthWord">
<h2>Route</h2>
</div>
</div>
<div class="inputWrap">
<form id="form_id">
<input type="text" id="start" name="name" required="required" value="" placeholder="Start Your Destination"/>
<input type="text" id="end" name="name" required="required" value="" placeholder="End Your Distination">
</form>
</div>
</div>
<div class="buttonWrap">
<button type="button" id="submit" onclick="window.location.href='#map';">Find a Route // See The Map</button>
</div>
<!-- <div id="table">
<h2>List of all person</h2>
<table class="footable">
<thead>
<tr>
<th data-class="expand">First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div> -->
</section>
<section class="googleMaps">
<div class="panel">
<div class="searchKicker">
<input type="text" id="search" value="" placeholder="Search Google Maps"><i class="fa fa-search" aria-hidden="true"></i>
</div>
<div class="menuSlide">
<i class="fa fa-bars fa-2x" aria-hidden="true"></i>
</div>
<div class="buttonUp">
<a href="#top"><button>GO UP</button></a>
</div>
<div class="infoWrap">
<h2>About the Route</h2>
</div>
<div id="directionsPanel">
</div>
</div>
<div id="map"></div>
</section>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDmkBaMsaFYsppUdA79sskgq1ZmqqAlHaY&sensor=true&libraries=places"></script>
<script src="js/main.js"></script>
</body>
</html>