-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (69 loc) · 2.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/f5f4ff2f36.js" crossorigin="anonymous"></script>
<!-- leafletjs css link here -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<link rel="stylesheet" href="./assets/css/style.css">
<title>Adventure App</title>
</head>
<body>
<header>
<h2><i class="fa-solid fa-car"> </i>ARE WE THERE YET</h2>
<nav>
<ul>
<li> <a href="#">Home</a> </li>
<li> <a href="./favlocations.html">My Favorite Places</a> </li>
<li> <a href="./todos.html">Plan a trip</a> </li>
</ul>
</nav>
</header>
<hr>
<!-- Dropdown List of States -->
<div class="main">
<h2>Pack Your Bags!</h2>
<blockquote>“The journey of a thousand miles begins with a single step.” <cite> - Lao Tzu.</cite></blockquote>
<h2>Search by State Here</i></h2>
<form class="dropdown">
<select id="state" class="search-bar">
</select>
<button type="submit" class="search-btn btn">Search</button>
</form>
</div>
<!-- map section -->
<div class="center">-- User's Search Result Map --</div>
<h3>
<div id="map"></div>
</h3>
<div class="center">-- click on markers for info --</div>
<div id="result-content"></div>
<!-- modal -->
<div class="park-details">
<button type="button" class="btn park-close-btn" id="park-close-btn">
<i class="fas fa-times"></i>
</button>
<!-- park content// description will go here -->
<div class="park-details-content">
<h2 class="park-title">Park Name Will Go Here</h2>
<p class="park-location">Location will go here</p>
<div class="park-img">
<img src="https://www.pikpng.com/pngl/m/342-3429465_popular-categories-yellowstone-park-sign-png-clipart.png"
alt="National Park">
</div>
</div>
</div>
<div id="result-content"></div>
<!-- leafletjs map Javascript link here-->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="./assets/js/script.js"></script>
</body>
</html>