forked from AbhinavTilwar/ani_card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
25 lines (25 loc) · 797 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 lang="en">
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="outerbox">
<h2>Tiger</h2>
<img src="tiger.jpg" alt="Tiger">
<div class="innerbox">
<p class="italics">They are the largest naturally occurring species of cat</p>
<ul>
<li><span>Scientific Name</span>: Panthera tigris</li>
<li><span>Average Length</span>: 11 feet</li>
<li><span>Average Lifespan</span>: 19 to 20 years</li>
<li><span>Habitat</span>: mangrove swamps to grasslands</li>
</ul>
<p class="justify">A Tiger is a very large solitary cat with a yellow-brown coat striped with black, native to the forests of Asia but becoming increasingly rare.
</p>
</div>
</div>
</body>
</html>