-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap.html
47 lines (46 loc) · 1.65 KB
/
map.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/normalize.css">
<meta name="viewport" content="initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Playball' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<title>Itinerary</title>
</head>
<body class="body">
<header>
<h1 class="stitching">Congrats! You are on your way to a baseball-tastic vacation.</h1>
</header>
<article class="body-content">
<p class="blurb">Populate the map by selecting teams from the list below.</p>
<section id="map-container">
<div id="map">map goes here</div>
<section id="directions-panel"></section>
</section>
</article>
<section>
<fieldset id ="list"></fieldset>
</section>
<section class="address">
<input id="address-box" type="text" placeholder="Enter Another Address">
</section>
<section id ="tripy">
<button type="submit" id="submit">Get my trip!</button>
</section>
<section>
<ul id="path"></ul>
</section>
<section>
<footer class="footer">
<a href="about.html">About the Authors</a>
<a href="travellog.html">Travel Log</a>
<a href="index.html">Log Out</a>
</footer>
</section>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDHGB5WUa7Gue4hqU0UEtlgrKsgL6oCjsc&signed_in=true&callback=initMap"
async defer></script>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>