-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.html
executable file
·48 lines (40 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Animal Trading Cards</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h3>Cheetah</h3>
<figure>
<img class="image" src="assets/cheetah-img.jpg" alt="image of a Cheetah in field" />
<figcaption>Photo from Pinterest</figcaption>
</figure>
<div class="facts-wrapper">
<p class="interesting-facts">
The cheetah is a large cat of the subfamily Felinae that occurs in
North, Southern and East Africa, and a few localities in Iran.
</p>
<ul>
<li><span class="fact-list">Speed</span>: 100 – 120 km/h (In Short Bursts, Running)</li>
<li><span class="fact-list">Mass</span>: 21 – 72 kg (Adult)</li>
<li><span class="fact-list">Scientific name</span>: Acinonyx jubatus</li>
<li><span class="fact-list">Height</span>: 70 – 90 cm (Adult, At Shoulder)</li>
</ul>
<p>
The cheetah is the world's fastest land mammal. With acceleration that
would leave most automobiles in the dust, a cheetah can go from 0 to
60 miles an hour in only three seconds. These big cats are quite
nimble at high speed and can make quick and sudden turns in pursuit of
prey.
</p>
<ul>
<li>Nationalgeographic</li>
<li>Wikipedia</li>
</ul>
</div>
</div>
</body>
</html>