-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (55 loc) · 2.67 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
<!-- Markup the content below with tags and attributes such that it can be styled in CSS-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Roboto+Mono:wght@700&display=swap" rel="stylesheet">
<!-- Link your CSS stylesheet -->
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<nav>
<a class="orange" href="">Plan your <br>Visit</a>
<a class="blue" href="">Learn about <br>the Park</a>
<a class="yellow" href="">Get <br>Involved</a>
</nav>
</header>
<section class="top">
<div class="left">
<img src="assets/header_img.jpg" alt="Mountain Sunrise in Yosemite National Park">
</div>
<div class="right">
<h1>Yosemite Park Guide</h1>
<h2>Come explore California’s beautiful wilderness.</h2>
<br>
<p>Always open. Reservations are not <br>available or required to enter the<br> park.</p>
</div>
</section>
<div>
<p class="paragraph">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.
<br><br>
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>
<div class="campfireImage">
<img src="https://image.flaticon.com/icons/svg/2979/2979348.svg" alt="Cartoon Campfire"></div>
<div class="campfireParagraph">
<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 <strong>current fire restrictions</strong>.</p>
</div>
<div class="camperImage">
<img src="https://image.flaticon.com/icons/svg/820/820374.svg" alt="Cartoon Camper">
</div>
<div><p class="camperParagraph">We strongly recommend that you make reservations for lodging, camping, and backpacking. You can pay the <strong>park entrance fee</strong> upon arrival (there's no need to pay it in advance).</p>
</div>
<footer>
<div class="footerImg">
<!--<img src="footer_img.jpg" alt="Sunrise over a mountain valley">-->
</div>
<nav>
<a class="orange" href="">Plan your <br>Visit</a>
<a class="blue" href="">Learn about <br>the Park</a>
<a class="yellow" href="">Get <br>Involved</a>
</nav>
</footer>
</body>
</html>