-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
375 lines (353 loc) · 14.4 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<!-- Additional CSS must be placed after Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster|Open+Sans"
/>
<link rel="stylesheet" href="/css/styles.css" />
<title>Nucamp: A Better Way To Camp</title>
</head>
<body>
<!-- header -->
<header>
<div class="container">
<div class="row">
<div class="col-4 col-sm-3 col-md-2 align-self-center">
<img src="img/logo.png" class="img-fluid" alt="image of Numcamp logo" />
</div>
<div class="col">
<h1>Nucamp</h1>
<h2>a better way to camp</h2>
</div>
<!--button-->
<div class="col-xl-2 col-md-4 mt-4">
<a href="#reserveForm" class="btn bg-primary text-light"
>Reserve Campsite</a
>
</div>
</div>
</div>
</header>
<!-- </nav> -->
<nav class="navbar navbar-expand-sm navbar-dark sticky-top">
<div class="container">
<a class="navbar-brand" href="#"
><img src="img/logo.png" height="30" width="30" alt="image of Nucamp logo"
/></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#nucampNavbar"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="nucampNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#"
><i class="fa-solid fa-house fa-lg"></i> Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html"
><i class="fa-solid fa-info fa-lg"></i> About</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#"
><i class="fa-solid fa-list fa-lg"></i> Sites</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html"
><i class="fa-solid fa-address-card fa-lg"></i> Contact</a
>
</li>
</ul>
<span class="navbar-text ms-auto">
<a role="button" data-bs-toggle="modal" data-bs-target="#loginModal"><i class="fa-solid fa-right-to-bracket"></i> Login</a>
</span>
</div>
</div>
</nav>
<!-- login modal -->
<div class="modal fade" id="loginModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Login</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="container-fluid">
<form>
<div class="row">
<div class="mb-3 col-12">
<label class="sr-only" for="loginEmail">Email address</label>
<input type="email" class="form-control form-control-sm" id="loginEmail"
placeholder="Enter email">
</div>
<div class="mb-3 col-12">
<label class="sr-only" for="loginPassword">Password</label>
<input type="password" class="form-control form-control-sm" id="loginPassword"
placeholder="Password">
</div>
<div class="col">
<div class="form-check mb-3">
<input class="form-check-input" type="checkbox">
<label class="form-check-label"> Remember me</label>
</div>
</div>
</div>
<div class="row">
<div class="col">
<button type="button" class="btn btn-secondary"
data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- main section -->
<main class="container">
<!-- carousel -->
<section class="row row-content">
<div class="col-md-8 mx-auto">
<div id="homeCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#homeCarousel" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#homeCarousel" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#homeCarousel" data-bs-slide-to="2"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="/img/breadcrumb-trail.jpg" alt="Breadcrumb Trail Campground" />
<div class="carousel-caption">
<h3>Breadcrumb Trail Campground</h3>
<p class="d-none d-sm-block">Let Nucamp be your guide to this off-the-beaten-path, hike-in-only campground.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/react-lake.jpg" alt="React Lake Campground" />
<div class="carousel-caption">
<h3>React Lake Campground</h3>
<p class="d-none d-sm-block">Nestled in the foothills of the Chrome Mountains, this campground on the shores of the pristine React Lake is a favorite for fly fishers.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/chrome-river.jpg" alt="Chrome River Campground" />
<div class="carousel-caption">
<h3>Chrome River Campground</h3>
<p class="d-none d-sm-block">Spend a few sunny days and starry nights beneath a canopy of old-growth firs at this enchanting spot by the Chrome River.</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#homeCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#homeCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- discover section -->
<section class="row row-content align-items-center">
<div class="col-sm-4 col-md-3 order-sm-last">
<h2 class="text-sm-end">Discover & Review</h2>
</div>
<div class="col">
<div class="d-flex">
<img
class="me-3 img-thumbnail"
src="img/breadcrumb-trail-thumb.jpg"
alt="Breadcrumb Trail"
/>
<div>
<h3>Our Campsites</h3>
<p class="d-none d-sm-block">
Explore our growing database of curated campsites and leave your
own reviews!
</p>
</div>
</div>
</section>
<!-- feature section -->
<section class="row row-content align-items-center">
<div class="col-sm-3 col-md-4 order-sm-first">
<h2 class="text-sm-start">Featured Campsites</h2>
</div>
<div class="col">
<div class="d-flex">
<img
class="ms-3 img-thumbnail order-sm-last"
src="img/react-lake-thumb.jpg"
alt="react-lake-thumb"
/>
<div>
<h3>React Lake Campground</h3>
<p class="d-none d-sm-block">
Nestled in the foothills of the Chrome Mountains, this campground on the shores of the pristine React Lake is a favorite for fly fishers.
</p>
</div>
</div>
</div>
</section>
<!-- partner section -->
<section class="row row-content align-items-center">
<div class="col-sm-4 col-md-3 order-sm-last">
<h2 class="text-sm-end">Our Community Partners</h2>
</div>
<div class="col">
<div class="d-flex">
<img
class="me-3 img-thumbnail"
src="img/bootstrap-thumb.png"
alt="Bootstrap Outfitters"
/>
<div class="align-self-center">
<h3>Bootstrap Outfitters</h3>
<p class="d-none d-sm-block">
Bootstrap Outfitters supplies you with gear you need at prices
you can't beat.
</p>
</div>
</div>
</div>
</section>
<!-- reservation form section -->
<section class="row row-content align-items-center">
<div class="col-sm-6 mx-auto">
<div class="card">
<div class="card-header bg-info text-white">
<h3>Reserve a Campsite</h3>
</div>
<div class="card-body">
<form>
<!-- Row 1: Number of Campers -->
<div class="row mb-3">
<div class="col-12 col-sm-6">
<label for="numCampers" class="col-form-label"
>Number of Campers</label
>
</div>
<div class="col-12 col-sm-6">
<select
id="numCampers"
name="numCampers"
class="form-control"
>
<option>Select...</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</div>
</div>
<!-- Row 2: Date -->
<div class="row mb-3">
<div class="col-12 col-sm-6">
<label for="campDate" class="col-form-label">Date</label>
</div>
<div class="col-12 col-sm-6">
<input
type="date"
id="campDate"
name="campDate"
class="form-control"
placeholder="Select a date"
/>
</div>
</div>
<!-- Row 3: Submit Button -->
<div class="row mb-3">
<div class="col-12">
<button type="submit" id="reserveForm" class="btn btn-primary">
Search
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-4 col-sm-2 offset-1">
<h5>Links</h5>
<ul class="list-unstyled">
<li><a href="#">Home</a></li>
<li><a href="aboutus.html">About</a></li>
<li><a href="#">Sites</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-6 col-sm-5 text-center">
<h5>Social</h5>
<a href="http://instagram.com/"
><i class="fa-brands fa-instagram fa-xl"></i
></a>
<a href="http://facebook.com/"
><i class="fa-brands fa-facebook fa-xl"></i
></a>
<a href="http://twitter.com/"
><i class="fa-brands fa-twitter fa-xl"></i
></a>
<a href="http://youtube.com/"
><i class="fa-brands fa-youtube fa-xl"></i
></a>
<!-- <a href="http://instagram.com/">Instagram</a>
<a href="http://facebook.com/">Facebook</a>
<a href="http://twitter.com/">Twitter</a>
<a href="http://youtube.com/">YouTube</a> -->
</div>
<div class="col-sm-4 text-center">
<i class="fa-solid fa-phone fa-lg text-primary"></i>
1-206-555-1234<br />
<i class="fa-solid fa-envelope fa-lg text-primary"></i>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JavaScript plugins -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
</body>
</html>