-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoo.html
64 lines (63 loc) · 1.79 KB
/
zoo.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
63
64
<html>
<head>
<link rel="stylesheet" href="zoo.css">
<title>Zoo Page</title>
</head>
<body>
<h1>Our Animals & Their Names</h1>
<article>
<h2>Bears</h2>
<img src="bear.jpg" alt="bear">
<a href="https://en.wikipedia.org/wiki/Bear#:~:text=Bears%20are%20carnivoran%20mammals%20of%20the%20family%20Ursidae%20(/%20%CB%88#:~:text=Bears%20are%20carnivoran%20mammals%20of%20the%20family%20Ursidae%20(/%20%CB%88">Bear Wiki</a>
<p>Some would say they are the King of the Forest</p>
<ol>
<li>Ollie</li>
<li>Mona</li>
</ol>
</article>
<article>
<h2>Giraffes</h2>
<img src="giraffe.jpg" alt="giraffe">
<a href="https://en.wikipedia.org/wiki/Giraffe">Giraffes Wiki</a>
<p>Maybe one of the tallest animals on the planet</p>
<ol>
<li>Frankie</li>
<li>Coconut</li>
</ol>
</article>
<article>
<h2>Lions</h2>
<img src="lion.jpg" alt="lion">
<a href="https://en.wikipedia.org/wiki/Lion">Lions Wiki</a>
<p>The for sure King of the Jungle</p>
<ol>
<li>Mella</li>
<li>Karl</li>
</ol>
</article>
<article>
<h2>Monkeys</h2>
<img src="monkey.jpg" alt="monkey">
<a href="https://en.wikipedia.org/wiki/Monkey">Monkeys Wiki</a>
<p>Silly little creatures aren't they?</p>
<ol>
<li>Cookie</li>
<li>Earl</li>
<li>Banana Pudding</li>
</ol>
</article>
<article>
<h2>Alligators</h2>
<img src="alligator.jpg" alt="alligator">
<a href="https://en.wikipedia.org/wiki/Alligator">Alligators Wiki</a>
<p>Godzilla just not on steriods</p>
<ol>
<li>Wren</li>
<li>Aspen</li>
<li>Mika</li>
</ol>
</article>
</body>
<footer>
</footer>
</html>