-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGiantPandaCard.html
31 lines (31 loc) · 1.33 KB
/
GiantPandaCard.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 href="styles.css" rel="stylesheet">
</head>
<body>
<div class="card-border">
<!-- your favorite animal's name goes here -->
<h1>Ginat Panda</h1>
<!-- your favorite animal's image goes here -->
<img src="https://www.thelocal.de/userdata/images/article/fa6fd5014ccbd8f4392f716473ab6ff354f871505d9128820bbb0461cce1d645.jpg" alt="Panda" class="image">
<div class="text-border">
<!-- your favorite animal's interesting fact goes here -->
<p class="interest">The giant panda also known as panda bear or simply panda, is a bear native to south central China.
</p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span class="list">Scientific Name</span>: Ailuropoda melanoleuca</li>
<li><span class="list">Average Length</span>: 60 – 90 centimeters</li>
<li><span class="list">Average Lifespan</span>: 20 years</li>
<li><span class="list">Habitat</span>: Large bamboo forests</li>
</ul>
<!-- your favorite animal's description goes here -->
<p class="description">The giant panda is a conservation reliant vulnerable species.It is easily recognized by the large, distinctive black patches around its eyes, over the ears, and across its round body.
</p>
</div>
</div>
</body>
</html>