-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
39 lines (35 loc) · 1.25 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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="contain">
<!-- your favorite animal's name goes here -->
<div class="head">
<h3>Psittaciformes(Parrot)</h3>
</div>
<!-- your favorite animal's image goes here -->
<a>
</a>
<img src="400px-Brown-headed_Parrot_(Poicephalus_cryptoxanthus)_(11688946544),_crop.jpg" alt="parrot" class="image">
<div class="info">
<!-- your favorite animal's interesting fact goes here -->
<div class="text">
<p>There are around 372 different parrot species</p>
</div>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Scientific Name:</span>: Psittaciformes</li>
<li><span>Height</span>: ranges from 3.5 to 40 inches</li>
<li><span>Average lifespan</span>: 40 yrs</li>
<li><span>Habitat</span>: Southern Tropical Areas</li>
</ul>
<!-- your favorite animal's description goes here -->
<p>Parrots, also known as psittacines, are birds of the roughly 393 species in 92 genera comprising the order Psittaciformes, found mostly in tropical and subtropical regions. </p>
</div>
</div>
</body>
</html>