-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.html
69 lines (65 loc) · 1.82 KB
/
footer.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
<footer>
<script>
// Initialize and add the map
function initMap() {
// The location of Cherry Valley
const cherryValley = { lat: 40.9984, lng: -75.2207 };
// The map, centered at Cherry Valley
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 17,
center: cherryValley,
});
// The marker, positioned at Cherry Valley
const marker = new google.maps.Marker({
position: cherryValley,
map: map,
});
}
// Load the Google Maps API script
document.addEventListener("DOMContentLoaded", function () {
initMap();
});
</script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB523g4oomoyxtwtXcJq-qLwiM9WJfHA3c&callback=initMap"
async
defer></script>
<div class="footer-sections">
<div class="contact">
<h4>Contact Us</h4>
<p>
<a href="mailto:[email protected]">
</a>
</p>
</div>
<div class="social">
<h4>Support our Social Media!</h4>
<p>
<a href="https://youtube.com/@friendsofcherryvalleynatio7219"
>YouTube</a
>
<br />
<a href="https://www.facebook.com/friendsofcherryvalley/"
>Facebook</a
>
<br />
<a href="#">Instagram (Coming Soon!)</a>
<br />
<a href="#">TikTok (Coming Soon!)</a>
</p>
</div>
<div class="visit">
<h4>Visit Us</h4>
<p>
<a
href="https://www.bing.com/search?q=Cherry+Valley+National+Wildlife+Refuge+Headquarters+2138+Croasdale+Rd+Stroudsburg%2C+PA+18360&cvid=c27d5976ba724bc1b527829d4d9ba406&gs_lcrp=EgZjaHJvbWUqBggAEEUYOzIGCAAQRRg70gEHNDUwajBqOagCBLACAQ&FORM=ANAB01&PC=U531">
Cherry Valley National Wildlife Refuge Headquarters<br />
2138 Croasdale Rd<br />
Stroudsburg, PA 18360
</a>
</p>
<div id="map" style="height: 400px; width: 100%"></div>
</div>
</div>
</footer>