-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (52 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
63 lines (52 loc) · 2.46 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
<!-- 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 rel="stylesheet" href="index.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Chelsea+Market">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
</head>
<body>
<header>
<nav>
<a class="box1" href="#guide">Plan your Visit</a>
<a class="box2" href="#learn">Learn about the Park</a>
<a class="box3" href="#info">Get Involved</a>
</nav>
</header>
<section id="guide">
<div class="guideimg">
<img src="assets/header_img.jpg" alt="Yosemite Park" width=200rem height=200rem>
</div>
<div class="hero">
<h1>Yosemite Park Guide</h1>
<p class="line1">Come explore California’s beautiful wilderness.</p>
<p class="line2">Always open. Reservations are not available or required to enter the park.</p>
</div>
</section>
<section id="learn">
<div class="box box4">
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.
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.
</div>
</section>
<div class="fire">
<img src="assets/campfire.png" height="50%" width="15%">
<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. <b>Check for current fire restrictions.</b> </p>
</div>
<div class="fire">
<img src="assets/camper.png" height="50%" width="15%">
<p>We strongly recommend that you make reservations for lodging, camping, and backpacking. You can pay the <b>park entrance fee</b> upon arrival (there's no need to pay it in advance).</p>
</div>
<footer>
<img src="assets/footer_img.jpg" width="100%";>
<nav>
<a class="box1" href="#guide">Plan your Visit</a>
<a class="box2" href="#learn">Learn about the Park</a>
<a class="box3" href="#info">Get Involved</a>
</nav>
</footer>
</body>
</html>