-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (104 loc) · 3.71 KB
/
index.html
File metadata and controls
104 lines (104 loc) · 3.71 KB
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
94
95
96
97
98
99
100
101
102
103
104
<!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" />
<!-- Stylesheets -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<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=Chivo:wght@300;400;700&family=Roboto:wght@100&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/08542f0c26.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./assets/css/style.css" />
<title>National Park Adventure Planner</title>
</head>
<body>
<!-- Modal -->
<div id="addModal">
<div class="modal-content d-flex align-items-center">
<span class="close mr-2">×</span>
<p>Please input a starting address or location. Thank you!</p>
</div>
</div>
<header class="d-flex justify-content-center">
<h1>National Park Adventure Planner</h1>
</header>
<div class="margin"></div>
<main>
<!-- Starting Address -->
<section
class="d-flex flex-row justify-content-center align-items-center addressbar"
>
<article class="addressform">
<h4 class="d-inine">Starting Address:</h4>
</article>
<article>
<textarea id="startingInput" class="d-inine textinput"></textarea>
</article>
</section>
<!-- Parks and States list for users to choose from element -->
<section class="d-flex flex-row justify-content-center">
<!-- Placeholder Element for spacing -->
<article class="col-1"></article>
<!-- Park Options -->
<article id="parks-el" class="d-flex flex-column m-3 p-2 col-5">
<h3
id="parks-el-title"
class="d-flex justify-content-center text-white rounded-pill mb-2"
>
National Parks
</h3>
<ul id="parks" class="list-inline overflow-auto p-2"></ul>
</article>
<!-- States Options -->
<article class="col-1 m-3">
<select id="states" class="form-control">
<option>State</option>
</select>
</article>
</section>
<!-- Map Button Element -->
<section id="mapButton" class="d-flex justify-content-center">
<button class="map m-2">
Map My Adventure <i class="fa-solid fa-map-location-dot"></i>
</button>
</section>
<!-- Parks Selected List -->
<section>
<article id="parks-selected">
<h2 class="d-flex justify-content-center">Parks Selected</h2>
<ul class="selected overflow-auto"></ul>
</article>
</section>
<footer
class="d-flex justify-content-center align-items-center text-center text-white p-2"
>
© Travel Trio
</footer>
</main>
<!-- Logic and API links -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<script src="./assets/js/logic.js"></script>
</body>
</html>