-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (159 loc) · 5.88 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Wild Animal Mini-Zoo</title>
</head>
<body>
<header>
<h1>Zoo Animals</h1>
<!-- these are anchor links to scoll to the section on this page -->
<nav>
<a href="#bears">Bears</a> | <a href="#giraffes">Giraffs</a> |
<a href="#lions">Lions</a> | <a href="#monkeys">Monkeys</a> |
<a href="#alligators">Alligators</a>
</nav>
</header>
<!-- The bear section -->
<section id="bears">
<h2>Bears</h2>
<p style="width: 500px">
Bears are carnivoran mammals of the family Ursidae. They are classified
as caniforms, or doglike carnivorans. Although only eight species of
bears are extant, they are widespread, appearing in a wide variety of
habitats throughout most of the Northern Hemisphere and partially in the
Southern Hemisphere. Bears are found on the continents of North America,
South America, and Eurasia. Common characteristics of modern bears
include large bodies with stocky legs, long snouts, small rounded ears,
shaggy hair, plantigrade paws with five nonretractile claws, and short
tails.
</p>
<p>
Learn more about bears
<a href="https://en.wikipedia.org/wiki/Bear" target="_blank">here</a>
</p>
<img
src="./images/Ours_brun_parcanimalierpyrenees_1.jpg"
alt="This is a bear"
style="width: 500px"
/>
<ul>
<li>Ollie</li>
<li>Mona</li>
</ul>
</section>
<!-- The giraffe section -->
<section id="giraffes">
<h2>Giraffes</h2>
<p style="width: 500px">
The giraffe is a large African hoofed mammal belonging to the genus
Giraffa. It is the tallest living terrestrial animal and the largest
ruminant on Earth. Traditionally, giraffes have been thought of as one
species, Giraffa camelopardalis, with nine subspecies. Most recently,
researchers proposed dividing them into four extant species due to new
research into their mitochondrial and nuclear DNA, and individual
species can be distinguished by their fur coat patterns. Seven other
extinct species of Giraffa are known from the fossil record.
</p>
<p>
Learn more about giraffes
<a href="https://en.wikipedia.org/wiki/Giraffe" target="_blank">here</a>
</p>
<img
src="./images/giraffe.jpg"
alt="This is a giraffe"
style="width: 500px"
/>
<ul>
<li>Frankie</li>
<li>Coconut</li>
</ul>
</section>
<!-- The lion section -->
<section id="lions">
<h2>Lions</h2>
<p style="width: 500px">
The lion (Panthera leo) is a large cat of the genus Panthera, native to
Africa and India. It has a muscular, broad-chested body; a short,
rounded head; round ears; and a dark, hairy tuft at the tip of its tail.
It is sexually dimorphic; adult male lions are larger than females and
have a prominent mane. It is a social species, forming groups called
prides. A lion's pride consists of a few adult males, related females,
and cubs. Groups of female lions usually hunt together, preying mostly
on medium-sized and large ungulates. The lion is an apex and keystone
predator; although some lions scavenge when opportunities occur and have
been known to hunt humans, lions typically do not actively seek out and
prey on humans.
</p>
<p>
Learn more about lions
<a href="https://en.wikipedia.org/wiki/Lion" target="_blank">here</a>
</p>
<img
src="./images/the_lion_king.jpg"
alt="This is a lion"
style="width: 500px"
/>
<ul>
<li>Mella</li>
<li>Karl</li>
</ul>
</section>
<!-- The monkey section -->
<section id="monkeys">
<h2>Monkeys</h2>
<p style="width: 500px">
Monkey is a common name that may refer to most mammals of the infraorder
Simiiformes, also known as simians. Traditionally, all animals in the
group now known as simians are counted as monkeys except the apes. Thus
monkeys, in that sense, constitute an incomplete paraphyletic grouping;
however, in the broader sense based on cladistics, apes (Hominoidea) are
also included, making the terms monkeys and simians synonyms in regard
to their scope.
</p>
<p>
Learn more about monkeys
<a href="https://en.wikipedia.org/wiki/Monkey" target="_blank">here</a>
</p>
<img
src="./images/Portrait_of_a_father.jpg"
alt="A monkey and his dad"
style="width: 500px"
/>
<ul>
<li>Cookie</li>
<li>Earl</li>
<li>Banana Pudding</li>
</ul>
</section>
<!-- The alligator section -->
<section id="alligators">
<h2>Alligators</h2>
<p style="width: 500px">
An alligator, or colloquially gator, is a large reptile in the genus
Alligator of the family Alligatoridae of the order Crocodilia. The two
extant species are the American alligator (A. mississippiensis) and the
Chinese alligator (A. sinensis). Additionally, several extinct species
of alligator are known from fossil remains. Alligators first appeared
during the late Eocene epoch about 37 million years ago.
</p>
<p>
Learn more about alligators
<a href="https://en.wikipedia.org/wiki/Alligator" target="_blank"
>here</a
>
</p>
<img
src="./images/AmericanAlligator.JPG"
alt="This is an alligator"
style="width: 500px"
/>
<ul>
<li>Wren</li>
<li>Aspen</li>
<li>Mika</li>
</ul>
</section>
</body>
</html>