forked from ainc/basicweb-crash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
26 lines (25 loc) · 980 Bytes
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Nick's Favorite Animal</title>
<link href='http://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
</head>
<body>
<div class="container">
<h1>Nick's Favorite Animal</h1>
<!-- navbar -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="facts.html">Fun Facts</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- navbar -->
<p>The Wandering Albatross is a very graceful bird. Here is what <a href="http://en.wikipedia.org/wiki/Wandering_albatross">its Wikipedia page</a> has to say:</p>
<p>Here is a video of a Wandering Albatross flying:</p>
<!-- embedded YouTube video -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/uMX2wCJga8g" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>