-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 915 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet">
<title>Animal Trading Cards</title>
</head>
<body>
<div id="card">
<h3 class="name">Little Penguin</h3>
<img src="penguin.png" alt="penguin" id="image">
<div class="bio">
<p class="info">Penguins do not have teeth. Instead they use their beak to grab and hold wiggling prey. They have spines on the roof of their beak to help them get a good grip. </p>
<ul class="facts">
<li><span>Scientific Name</span>: Spheniscidae</li>
<li><span>Mass</span>: 1.5 kg</li>
<li><span>Height</span>: 30 - 33 cm</li>
<li><span>Lifespan</span>: 6 years</li>
</ul>
<p class="about">Penguins are a group of aquatic, flightless birds. They live almost exclusively in the Southern Hemisphere, with only one species, the Galapagos penguin, found north of the equator.</p>
</div>
</div>
</body>
</html>