-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFloatingImages.html
More file actions
53 lines (53 loc) · 3.25 KB
/
FloatingImages.html
File metadata and controls
53 lines (53 loc) · 3.25 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Floating images</title>
<style type="text/css">
body{
margin: 0;
/*centers the inline-blocks */
text-align: center;
}
div {
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
vertical-align: top;
width: 45%;
text-align: left;
}
#frog {
float: left;
margin: 0 10px 10px 0;
}
#elephant {
float: right;
margin: 0 0 10px 10px;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<div>
<h2>Frogs</h2>
<img id="frog" src="images/frog.jpg" alt="frog" width="250px" height="250px" />
<p>Frogs are cold blooded. That means that the body temperature of a frog is the same as on the inside as it is on the outside. That is why frogs need to be near water so that they can jump in and cool off on hot days</p>
<p>When frogs hibernate their bones sort of grow a layer, like a tree does. When you look inside a frog's bone you will be able to see rings and tell how old the frog is by counting the rings</p>
<p>A group of fish is called a school, but a group of frogs is called an army. Do you think that is why army colors are green? A group of people is called a group</p>
</div>
<div>
<h2>Elephants</h2>
<img id="elephant" src="images/elephant.jpg" align="elephant" width="250px" height="250px" />
<p><strong>Elephants</strong> are large mammals of the family Elephantidae and the order Proboscidea. Three species are currently recognized: the African bush elephant <em>(Loxodonta africana)</em>, the African forest elephant <em>(L. cyclotis)</em>, and the Asian elephant <em>(Elephas maximus)</em>. Elephants are scattered throughout sub-Saharan Africa, South Asia, and Southeast Asia. Elephantidae is the only surviving family of the order Proboscidea; other, now extinct, members of the order include deinotheres, gomphotheres, mammoths, and mastodons.</p>
<p>All elephants have several distinctive features, the most notable of which is a long trunk or proboscis, used for many purposes, particularly breathing, lifting water, and grasping objects. Their incisors grow into tusks, which can serve as weapons and as tools for moving objects and digging. Elephants' large ear flaps help to control their body temperature. Their pillar-like legs can carry their great weight. African elephants have larger ears and concave backs while Asian elephants have smaller ears and convex or level backs.</p>
<p>Elephants are herbivorous and can be found in different habitats including savannahs, forests, deserts, and marshes. They prefer to stay near water. They are considered to be keystone species due to their impact on their environments. Other animals tend to keep their distance from elephants while predators, such as lions, tigers, hyenas, and any wild dogs, usually target only young elephants (or "calves"). Females ("cows") tend to live in family groups, which can consist of one female with her calves or several related females with offspring. The groups are led by an individual known as the matriarch, often the oldest cow.</p>
<p>
"Elephant - Wikipedia." Wikipedia. 6 October 2017, at 23:15. <a href="https://en.wikipedia.org/wiki/Elephant">https://en.wikipedia.org/wiki/Elephant</a>
</p>
</div>
</body>
</html>