-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (48 loc) · 2.03 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kyle's Favorite Animal</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<!-- Header -->
<h1>Kyle's Favorite Animal</h1>
<!-- Navbar -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="facts.html">Fun Facts</a></li>
</ul>
<!-- End Nav -->
<!-- End Header -->
<!-- Page Content -->
<img src="https://cdn.vox-cdn.com/thumbor/m3Bf1OCbMaR76bfYY3Ez6KerM6M=/0x0:3000x2000/1200x800/filters:focal(0x0:3000x2000)/cdn.vox-cdn.com/uploads/chorus_image/image/49468403/GettyImages-512657552.0.jpg" alt="Kangaroo hopping" width="200" />
<!-- Text about this website -->
<p>My name is Kyle and my favorite animal is the Kangaroo. It can hop for happiness. The kangaroo may look friendly, but they can be fierce.</p>
<!-- Ordered List -->
<h2>My Top 3 Favorite Animals</h2>
<ol>
<li>Kangaroo</li>
<li><a href="https://www.youtube.com/watch?v=18-xvIjH8T4">Slow Loris</a></li>
<li>Manta Ray</li>
</ol>
<!-- Unordered List -->
<h2>If I were a Kangaroo, I would...</h2>
<ul>
<li>Hop and do flips</li>
<li>Carry all my belongings in my pouch</li>
<li>Live in Australia</li>
</ul>
<!-- Video about this website -->
<h2>Kangaroo Video</h2>
<p>The kangaroo is a very graceful animal. Here is what <a href="https://en.wikipedia.org/wiki/Kangaroo">its Wikipedia page</a> has to say:</p>
<p>Here is a video of a kangaroo hopping:</p>
<!-- embedded YouTube video -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/guBPx7HhaJk" frameborder="0" allowfullscreen></iframe>
<!-- Link to another page -->
<p>You should check out some <a href="facts.html">Kangaroo fun facts</a>.</p>
</div>
</body>
</html>