-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
31 lines (31 loc) · 1.6 KB
/
card.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<!-- your favorite animal's name goes here -->
<h3 class="name">Elephant</h3>
<!-- your favorite animal's image goes here -->
<!-- Photo by <a href="https://unsplash.com/@emmalouissa?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Emma Louisa</a> on <a href="https://unsplash.com/photos/tow-brown-elephants-on-pasture-during-daytime--P8ptLiGFII?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
-->
<img src="emma-louisa--P8ptLiGFII-unsplash.jpg" alt="Elephant">
<div class="info">
<!-- your favorite animal's interesting fact goes here -->
<p class="fact">Elephants have over 150,000 muscle units in their trunk.</p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Scientific name</span>: Loxodonta africana</li>
<li><span>Average Length</span>: Between 8.2 to 13 feet</li>
<li><span>Average Lifespan</span>: 60 to 70 years</li>
<li><span>Habitat</span>: Savannas, grasslands, and forests.</li>
</ul>
<!-- your favorite animal's description goes here -->
<p>As earth's largest land animal, the elephant stands out for being able to pick up objects with its trunk. Pachyderma is the name for the thick skin they share with rhinoceros and hippos. Elephants are matriarchal. They live in groups led by the biggest and oldest female. Being herbivores, elephants live off grasses, leaves, shrubs and fruit.</p>
</div>
</div>
</body>
</html>