forked from ArianaHernandez/where-its-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
68 lines (67 loc) · 2.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<title>Map</title>
<!-- Meta tags for SEO and social sharing -->
<link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
<meta
name="description"
content=" A Site in which art resources are located"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&family=Sedgwick+Ave+Display&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Your Javascript Linked Below-->
<script src="/gallery.js"></script>
</head>
<body>
<div id="navigation">
<div id="left">
<a href="https://where-its-at.glitch.me/experiences.html"
>Where It's At</a
>
</div>
<ul id="right">
<li>
<a href="https://where-its-at.glitch.me/public-programs.html"
>Public Programs</a
>
</li>
<li>
<a href="https://where-its-at.glitch.me/community-art.html"
>Community Art</a
>
</li>
<li>
<a href="https://where-its-at.glitch.me/contributions.html"
>Contributions</a
>
</li>
<li><a href="https://where-its-at.glitch.me/map.html">Map</a></li>
<li><a href="https://where-its-at.glitch.me">Search Again</a></li>
</ul>
</div>
<div class="wrapper">
<div class="content" role="main">
<h1 class="header">The Spot</h1>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d193736.29846399813!2d-73.92499293510721!3d40.6490720806314!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sus!4v1634477835276!5m2!1sen!2sus"
width="600"
height="450"
style="border:0;"
allowfullscreen=""
loading="lazy"
></iframe>
</div>
</div>
</body>
</html>