-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 2.34 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
<!-- Markup the content below with tags and attributes such that it can be styled in CSS-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Link your CSS stylesheet -->
<link href="./index.css" rel="stylesheet">
</head>
<body>
<header>
<div>
<img src="./assets/header_img.jpg" alt="Header Image">
</div>
<h1>Yosemite Park Guide</h1>
<div class="links">
<a href="#plan your visit">Plan Your<br>Visit</a>
<a href="#learn about the Park">Learn About<br>the Park</a>
<a href="#get involved">Get<br>Involved</a>
</div>
</div>
</header>
<main>
<section class="main-section">
<div>
<h2>
<p>
Come explore California’s beautiful wilderness.
Always open. Reservations are not available or required to enter the park.
</p>
</h2>
</div>
<div>
<h2>
<p>
Not just a great valley, but a shrine to human foresight, the strength of granite, the power of glaciers, the persistence of life, and the tranquility of the High Sierra.
</p>
</h2>
</div>
<div>
<h2>
<p>
First protected in 1864, Yosemite National Park is best known for its waterfalls, but within its nearly 1,200 square miles, you can find deep valleys, grand meadows, ancient giant sequoias, a vast wilderness area, and much more.
</p>
</h2>
</div>
</section>
<section class="main-section2">
<img src="./assets/campfire.png" alt="Campfire Image">
<h2>
<p>
Fire is a natural and essential part of Yosemite. We manage fire carefully and study how it interacts with the park’s ecosystems. This blog provides updates about fires in Yosemite. Check for current fire restrictions.
</p>
</h2>
</section>
<section class="main-section3">
<img src="./assets/camper.png" alt="Camper Image">
<h2>
<p>
We strongly recommend that you make reservations for lodging, camping, and backpacking. You can pay the park entrance fee upon arrival (there's no need to pay it in advance).
</p>
</h2>
</section>
</main>
<footer>
<img src="./assets/footer_img.jpg" alt="Footer Image">
<nav>
<a href="#plan your visit">Plan Your Visit</a>
<a href="#learn about the Park">Learn About the Park</a><br>
<a href="#get involved">Get Involved</a>
</nav>
</footer>
</body>
</html>