forked from mmcginley32/project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (53 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Trips</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="./Assets/style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<!-- <link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap" rel="stylesheet"> -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<!-- Live key for deployment -->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBB65lPUf7uvkGoYk_JgjvCCDrN1fB7h4Y&callback=initMap&libraries=&v=weekly"
defer></script>
<!-- Free Key for testing locally -->
<!-- <script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCb1xprYSpXd0q_yDsJ1W2UGhfl9_YGKU0&callback=initMap&libraries=&v=weekly"
defer></script> -->
</head>
<body>
<div class="wrapper">
<h1><b>Weather Trips</b></h1>
<section id="route-form">
<form class="form-inline">
<div class="form-group mx-sm-3 mb-2">
<input class="form-control" id="start-city" type="text" placeholder="Starting City Name">
<input class="form-control" id="end-city" type="text" placeholder="Ending City Name">
<button type="submit" class="btn btn-primary" id="route">
<i class="fas fa-car-side" style="font-size: large;"> Route</i>
</button>
</div>
</form>
<form class="form-inline stops-form">
<div class="form-group mx-sm-3 mb-2">
<input class="form-control" id="stop-city" type="text" placeholder="City Name to stop in">
<button type="submit" class="btn btn-primary" id="add">
<i class="fas fa-hamburger" style="font-size: large;"> Add Stop</i>
</button>
</div>
</form>
</section>
<div id="map"></div>
<div id="table">
</div>
<!--Adding JavaScript Links -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script type="text/javascript" src="./Assets/script.js"></script>
</body>
</html>