forked from ainc/basicweb-crash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.26 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
<!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 -->
<img src="nick_such.jpg" alt="Nick Such, jerky man" width="200">
<p>My name is Nick and my favorite animal is the Wandering Albatross. It can fly for days on end. I think it would be cool to travel all around the world like a Wandering Albatross. Remember, not all who wander are lost.</p>
<h2>My Top 3 Favorite Animals</h2>
<ol>
<li>Wandering Albatross</li>
<li><a href="https://www.youtube.com/watch?v=18-xvIjH8T4">Slow Loris</a></li>
<li>Common Dolphin</li>
</ol>
<h2>If I were a Wandering Albatross, I would...</h2>
<ul>
<li>Fly to New Zealand</li>
<li>Ride air currents for fun</li>
<li>Eat lots of fish</li>
</ul>
</div>
<!-- Google Analytics code -->
</body>
</html>