forked from mashablair/animal-trading-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.html
executable file
·25 lines (25 loc) · 1017 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<article class="animal-card">
<h1>The Giant Panda</h1>
<!-- Photo Credit: redpandanetwork.org, image taken by Ritik -->
<img src="panda.jpg" alt="Giant panda bear eating a bamboo stick">
<div class="content_box">
<p class="cool-fact">The giant pandas are the best known species yet the shyest and rarest animals in the world.</p>
<ul class="facts-list">
<li><span>Scientific Name</span>: A. melanoleuca</li>
<li><span>Average Height</span>: 2-3 ft.</li>
<li><span>Average Lifespan</span>: 20 years</li>
<li><span>Habitat</span>: Bamboo forests</li>
</ul>
<p>At first glance, the giant panda would seem to resemble a bear, but in fact its features show it has a stronger affinity with racoons. They are solitary animals spending about two-thirds of its day feeding and the remainder resting.</p>
</div>
</article>
</body>
</html>