-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzoopage.html
125 lines (114 loc) · 3.95 KB
/
zoopage.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<!--styling to center images and text and to regulate image sizes-->
<style>
h1 {
text-align: center;
}
section {
text-align: center;
}
img {
width: 240px;
height: 135px;
}
ul {
list-style-position: inside;
}
</style>
<title>Zoo Page</title>
</head>
<body>
<header>
<h1>Animals at our zoo!</h1>
</header>
<!---->
<section>
<h2>Bears</h2>
<ul>
<img src="./images/bearOllie.jpg" alt="Ollie bear">
<li>Ollie</li>
<h2>&</h2>
<img src="./images/bearMona.webp" alt="Mona the bear">
<li>Mona</li>
<p>
Bears have sharp, curved claws up to five inches long on their front feet that are used for digging up food such as roots and invertebrates, catching fish, tearing apart rotten logs in search of food, or slicing into plant or animal matter. Their claws can come in handy when they dig their dens for winter hibernation.
</p>
<!--Link to wiki page-->
<a href="https://en.wikipedia.org/wiki/Bear" target="_blank">More Bear Facts</a>
</ul>
</section>
<!---->
<section>
<h2>Giraffes</h2>
<ul>
<img src="./images/giraffeFrankie.jpg" alt="Giraffe Frankie">
<li>Frankie</li>
<h2>&</h2>
<img src="./images/giraffeCoconut.jpg" alt="Coconut the Giraffe">
<li>Coconut</li>
<p>
Giraffes are distinguished by their coat patterns, and by where they live in Africa. At the Zoo's Urban Jungle, you can see Masai giraffes.
</p>
<!--Link to wiki page-->
<a href="https://en.wikipedia.org/wiki/Giraffe" target="_blank">More Giraffe Facts</a>
</ul>
</section>
<!---->
<section>
<h2>Lions</h2>
<ul>
<img src="./images/lionMella.jpg" alt="Mella lion">
<li>Mella</li>
<h2>&</h2>
<img src="./images/lionKarl.jpg" alt="Karl the Lion">
<li>Karl</li>
<p>
Lions are famous for their sonorous roar but have other forms of communication as well, mostly used to mark territory. They spread their scent by rubbing their muzzle on tufts of grass or shrubs, and they rake the earth with their hind paws.
</p>
<!--Link to wiki page-->
<a href="https://en.wikipedia.org/wiki/Lion" target="_blank">More Lion Facts</a>
</ul>
</section>
<!---->
<section>
<h2>Monkeys</h2>
<ul>
<img src="./images/monkeyCookie.jpg" alt="Cookie the monkey">
<li>Cookie</li>
<img src="./images/monkeyEarl.jpg" alt="Earl the monkey">
<li>Earl</li>
<h2>&</h2>
<img src="./images/monkeyBanana.webp" alt="Banana Pudding">
<li>Banana Pudding</li>
<p>
These small to medium-sized primates typically have a long tail, and mostly live in trees in tropical countries. They eat fruits, leaves, seeds, nuts, flowers, vegetables, and insects.
</p>
<!--Link to wiki page-->
<a href="https://en.wikipedia.org/wiki/Monkey" target="_blank">More Monkey Facts</a>
</ul>
</section>
<!---->
<section >
<h2>Alligators</h2>
<ul>
<img src="./images/alligatorWren.jpg" alt="Alligator Wren">
<li>Wren</li>
<img src="./images/alligatorAspen.webp" alt="Aspen the alligator">
<li>Aspen</li>
<h2>&</h2>
<img src="./images/alligatorMika.jpg" alt="Mika">
<li>Mika</li>
<p>
From nose to tail, belly to back, hard scales protect these alligators. Even their eyelids have bony plates under the skin!
</p>
<!--Link to wiki page-->
<a href="https://en.wikipedia.org/wiki/Alligator" target="_blank">More Alligator Facts</a>
</ul>
</section>
<!--Very important copyright statement-->
<footer>
<p> Copyright © 2024 Rythmat. All Rights Reserved </p>
</footer>
</body>
</html>