-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
37 lines (35 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Locations Map</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" ></script>
<link rel="stylesheet" href="./styles/site.css"/>
<link rel="icon" type="image/png" href="/images/favicon.png" />
</head>
<body>
<header>
<h1>Hidden Hikes</h1>
<h2> A website for adventurers </h2>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="map.html" class="active">Locations Map</a></li>
<li><a href="#">ETC Gardens</a></li>
<li><a href="#">Gold Gulch Trail</a></li>
<li><a href="lodato.html">Lodato Park Trail</a></li>
<li><a href="#">Shark Fin Cove</a></li>
<li><a href="#">About Us</a></li>
</ul>
</nav>
</header>
<h3 class="page_title">Map of Hidden Hike Locations</h3>
<div id="map_container"></div>
<script src="scripts/hikesData.js" ></script>
<footer>
<p>Header background created with free images available at <a href="https://www.canva.com">Canva.com.</a></p>
</footer>
</body>
</html>