forked from ainc/basicweb-crash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfacts.html
30 lines (30 loc) · 1.01 KB
/
facts.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
<!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>Here are some fun facts about the Wandering Albatross:</p>
<!-- Table of weight, size, top speed, favorite food, where it lives -->
<table>
<tr><td>Weight</td><td>28 lbs</td></tr>
<tr><td>Wingspan</td><td>10 feet</td></tr>
<tr><td>Top Speed</td><td>40 mph</td></tr>
<tr><td>Favorite Foods</td><td>Small fish, crustaceans</td></tr>
<tr><td>Where it lives</td><td>South America, Africa</td></tr>
</table>
</div>
</body>
</html>