-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
33 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<!-- your favorite animal's name goes here -->
<h3>Scorpion</h3>
<!-- your favorite animal's image goes here -->
<img src="scorpion-1001742_640.jpg" alt="Scorpion">
<div class="fancybox">
<!-- your favorite animal's interesting fact goes here -->
<p>Fluorescent chemicals in the transparent layer of their shell causes them to glow under UV light. </p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Scentific Name</span>: Scorpiones</li>
<li><span>Average Length</span>: 6cm</li>
<li><span>Average Lifespan</span>: 3-5 years</li>
<li><span>Habitat</span>: Deserts</li>
</ul>
<!-- your favorite animal's description goes here -->
<p><div class="info"></div>Scorpions have eight legs,a pair of claws, and a narrow tail with a stinger. Their average length is 6cm. They generally prey on insects. Their evolutionary history goes as far back as 435 million years.</p>
</div>
</div>
</body>
</html>