-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoo.html
77 lines (69 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<title>Zoo Animals</title>
</head>
<body>
<header>
<h1> Learn about our Zoo Animals</h1>
</header>
<main>
<article>
<h2> Bears</h2>
<img src="https://alaskawildlife.org/wp-content/uploads/2021/10/AWCC-JB-Patron-Bear-Feeding-Fair-Veggies-Sept-8-2018-28.jpg"
alt=" Two large brown bears walking.">
<ul>
<li>Ollie</li>
<li>Mona</li>
</ul>
<p>Ollie and Mona are 6 & 7 years old, they are siblings and love to swim and eat watermelon.</p>
<a href="https://www.nps.gov/subjects/bears/brown-bears.htm" target="_blank"
>Facts about bears.</a>
</article>
<article>
<h2>Giraffes</h2>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTr84u-40dcYCkB1evjVQkkwdCPjY3Dy-wAzA&s"
alt="One adult giraffe and giraffe calf">
<ul>
<li>Frankie</li>
<li>Coconut</li>
</ul>
<p>Frankie and Coconut are mother and daughter, they love sleeping and eating apples.</p>
<a href="https://animals.sandiegozoo.org/animals/giraffe" target="_blank">Facts about giraffes.</a>
</article>
<article>
<h2>Lions</h2>
<img src="https://cdn.mos.cms.futurecdn.net/FVqUjfbiHS9imyJiRiM53-1200-80.jpg"
alt="Two lions laying and looking off into the distnace">
<ul>
<li>Mella</li>
<li>Karl</li>
</ul>
<p>Mella and Karl are 3 year old sisters, they love climbing rocks and trees.</p>
<a href="https://www.nationalgeographic.com/animals/mammals/facts/african-lion" target="_blank">Facts about lions.</a>
</article>
<article>
<h2>Monkeys</h2>
<img src="https://www.ucdavis.edu/sites/default/files/styles/sf_landscape_16x9/public/images/article/img_1385.jpg?h=b998737d&itok=C2l4cFwC"
alt="Three monkeys investigate a piece of fruit">
<ul>
<li>Cookies</li>
<li>Earl</li>
<li>Banana Pudding</li>
</ul>
<p>Cookies, Earl, and Banana Pudding are two year old capuchin monkeys that love fruit and playing on ropes.</p>
<a href="https://neprimateconservancy.org/capuchin-monkeys/" target="_blank">Facts about capuchin monkeys.</a>
</article>
<article>
<h2>Alligators</h2>
<img src="https://zootampa.org/wp-content/uploads/2023/01/AmericanAlligator-2Gators-1-scaled.jpg" alt="Two alligators swimming in a river.">
<ul>
<li>Wren</li>
<li>Aspen</li>
<li>Mika</li>
</ul>
<p>Wren, Aspen and Mika are three years old, they love sunbathing and eating chicken.</p>
<a href="https://zootampa.org/animals/american-alligator/" target="_blank">Facts about alligators.</a>
</article>
</main>
</body>
</html>