-
Notifications
You must be signed in to change notification settings - Fork 0
/
yellowstone.html
36 lines (27 loc) · 1.08 KB
/
yellowstone.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Yellowstone National Park</title>
<link rel="stylesheet" type="text/css" href="yellowstone.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>Yellowstone National Park</h1>
<p>Yellowstone National Park is a nearly 3,500-sq.-mile wilderness recreation area atop a volcanic hot spot. Mostly in Wyoming, the park spreads into parts of Montana and Idaho too. Yellowstone features dramatic canyons, alpine rivers, lush forests, hot springs and gushing geysers, including its most famous, Old Faithful. It's also home to hundreds of animal species, including bears, wolves, bison, elk and antelope.</p>
</article>
<footer>
©2015 Nashville Software School • Page created by Michael Conrad
</footer>
</body>
</html>