-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<h3>Frog</h3>
<img class="animal-pic" src="frog.jpeg" alt="frog">
<div class="animal-info">
<p class="text-italic">Warty species of frog tend to be called toads but the distinction between frogs and toads is based on informal naming conventions concentrating on the warts rather than taxonomy or evolutionary history; some toads are more closely related to frogs than to other toads.</p>
<ul class="animal-facts">
<li><span class="text-bold">Scientific Name</span>: Anura</li>
<li><span class="text-bold">Average Length</span>: (Common toad) 5.9 inches</li>
<li><span class="text-bold">Lifespan</span>: 10-12 years</li>
<li><span class="text-bold">Clutch Size</span>: (Common toad) 3000 - 6000</li>
</ul>
<p>Frogs are a diverse and largely carnivorous group of short-bodied, tailless amphibians composing the order Anura. The oldest fossil "proto-frog" appeared in the early Triassic of Madagascar, but molecular clock dating suggests their origins may extend further back to the Permian, 265 million years ago. Frogs are widely distributed, ranging from the tropics to subarctic regions, but the greatest concentration of species diversity is in tropical rainforests.</p>
</div>
</div>
</body>
</html>