-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 2.5 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
<!-- 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">
</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="callToAction">
<div class="image">
<img src="assets/header_img.jpg" alt="headerimage" class="round">
</div> <!-- end callToAction -->
<div class="text">
<div>
<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>
</div>
</section>
<section>
<div class="main">
<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 class="info">
<div class="campfire">
<img src="assets/campfire.png" alt="campfire">
<p>Fire is a natural and essential <br>part of Yosemite. We manage fire <br>carefully and study how it <br>interacts with the park’s <br>ecosystems. This blog provides <br>updates about fires in Yosemite. <br>Check for <span class="bold"> current fire <br>restrictions.</span></p>
</div>
<div class="camper">
<img src="assets/camper.png" alt="picture of 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">
<!--empty section with background image-->
</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>