-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.html
29 lines (29 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" src="text/css" href="styles.css">
</head>
<body>
<div class="card">
<!-- your favorite animal's name goes here -->
<h3 class="animal-name">Polar bear</h3>
<!-- your favorite animal's image goes here -->
<img src="polar-bear.jpg" alt="Polar bear" class="image">
<div class="infos">
<!-- your favorite animal's interesting fact goes here -->
<p class="fun-fact">"Polar bears can comfortably swim at around 10km/h"</p>
<ul class="animal-infos">
<!-- your favorite animal's list items go here -->
<li><span class="label">Kingdom</span>: Animalia</li>
<li><span class="label">Species</span>: Ursus maritimus</li>
<li><span class="label">Class</span>: Mammalia</li>
<li><span class="label">Order</span>: Carnivora</li>
</ul>
<!-- your favorite animal's description goes here -->
<p class="description-box">The polar bear is a carnivorous bear whose native range lies largely within the Arctic Circle. Because of expected habitat loss caused by climate change, the polar bear is classified as a vulnerable species.</p>
</div>
</div>
</body>
</html>