-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.html
More file actions
40 lines (29 loc) · 1.43 KB
/
card.html
File metadata and controls
40 lines (29 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class = "container">
<!-- your favorite animal's name goes here -->
<h3>Rhinoceros</h3>
<!-- your favorite animal's image goes here -->
<img src="https://media.istockphoto.com/id/1250671878/photo/white-rhinoceros-ceratotherium-simum-adult.jpg?s=612x612&w=0&k=20&c=FrdkoZf_xg0h9ajwKR4R7_ioYaPHqwI1KxS5sV1p1QA=" alt="Rhinoceros">
<div class = "inner">
<!-- your favorite animal's interesting fact goes here -->
<p class = "first-fact">There are five species of rhinoceros: white, black, Indian, Javan, and Sumatran.</p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Scientific Name</span>: Rhinocerotidae</li>
<li><span>Average Length</span>: 8-13 feet</li>
<li><span>Average Lifespan</span>: 35-50 years</li>
<li><span>Habitat</span>: Tropical and subtropical grasslands, savannas, shrublands, and forests</li>
</ul>
<!-- your favorite animal's description goes here -->
<p class = "bottom-text">Rhinos are herbivores with skin that can be up to two inches thick, and large horns. They can have one or two horns on their snout, which are made of keratin—the same protein found in hair and fingernails. Found in Africa and Asia, they are one of the largest land animals.</p>
</div>
</div>
</body>
</html>