-
Notifications
You must be signed in to change notification settings - Fork 0
/
yosemite.html
33 lines (27 loc) · 1.08 KB
/
yosemite.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>National Parks</title>
<link rel="stylesheet" type="text/css" href="yosemite-style.css">
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="yellowstone.html"><li>Yellowstone</li></a>
<a href="yosemite.html"><li>Yosemite</li></a>
</ul>
</nav>
</header>
<article>
<h1>Yosemite National Park</h1>
<p>Yosemite National Park is set within California’s Sierra Nevada mountains. It’s famed for its giant, ancient sequoias, and for Tunnel View, the iconic vista of towering Bridalveil Fall and the granite cliffs of El Capitan and Half Dome. In Yosemite Village are shops, restaurants, the Yosemite Museum and the Ansel Adams Gallery, offering prints of the photographer’s renowned black-and-white landscapes of the area.</p>
</article>
<footer>
©2015 Nashville Software School • Page created by Christina Young
</footer>
</body>
</html>