-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
66 lines (62 loc) · 2.92 KB
/
about.html
File metadata and controls
66 lines (62 loc) · 2.92 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
<!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 ref="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<!-- Navbar section -->
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
</ul>
</div>
</div>
</nav>
<header><h1 id="Home">Three Best National Parks In Washington</h1></header>
<main>
<div class="container text-center">
<div class="row">
<div class="col-4">
<section class="card" style="width: 18rem;"><h2>Rainier National Park</h2></section>
<img src="https://greatruns.com/wp-content/uploads/2017/05/mt-rainier-natl-park.jpeg" width="250" height="300" class="card-img-top">
</div>
<div class="col-4">
<section class="card" style="width: 18rem;"><h2>North Cascades National Park</h2></section>
<img src="https://nas-national-prod.s3.amazonaws.com/styles/hero_image/s3/north-cascades.jpg?itok=1RlWSFws" width="250" height="300" class="card-img-top">
</div>
<div class="col-4">
<section class="card" style="width: 18rem;"><h2>Olympic National Park</h2></section>
<img src="https://www.themandagies.com/wp-content/uploads/2020/02/rialto-beach-hole-in-the-wall-hike-olympic-national-park-washington-pnw-the-mandagies-57.jpg" width="250" height="300" class="card-img-top">
</div>
</div>
</div>
<!-- Banner -->
<button class="btn btn-link d-block mx-auto" data-toggle="collapse" data-target="#collapseExample" type="button"
aria-expanded="false" aria-controls="collapseExample">
By using this site you agree to eating only cookies.
</button>
<div id="collapseExample" class="collapse alert alert-secondary" role="alert">
<p class="text-center mb-0">Just kidding! You can eat any pastry of choice.</p>
</div>
<!-- End of banner -->
</body>
</html>