-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 2.52 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
<!-- 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='https://fonts.googleapis.com/css?family=Chelsea+Market' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<header>
<nav>
<a href="#" class="orange">Plan your<br>Visit</a>
<a href="#" class="blue">Learn About<br>the Park</a>
<a href="#" class="yellow">Get<br>Involved</a>
</nav>
</header>
<section class="cta">
<div class="image">
<img src="assets/header_img.jpg" alt="sun rise over mountains in Yosemite National Park" class="round"/>
</div>
<div class="text">
<h1>Yosemite Park Guide</h1>
<h2>Come explore California’s beautiful wilderness.</h2>
<p>Always open. Reservations are not available or required to enter the park.</p>
</div>
</section>
<section>
<div class="beige">
<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>
<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>
</div>
</section>
<section>
<div class="campfire">
<img src="assets/campfire.png" alt="illustration of a campfire">
<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 <span class="bold">current fire restrictions</span>.</p>
</div>
<div class="camper">
<img src="assets/camper.png" alt="illustration of a camper">
<p>We strongly recommend that you make reservations for lodging, camping, and backpacking. You can pay the <span class="bold">park entrance fee</span> upon arrival (there's no need to pay it in advance).</p>
</div>
</section>
<section class="bg-img">
</section>
<footer>
<nav>
<a href="#" class="orange">Plan your<br>Visit</a>
<a href="#" class="blue">Learn About<br>the Park</a>
<a href="#" class="yellow">Get<br>Involved</a>
</nav>
</footer>
</body>
</html>