-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
30 lines (30 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Alegreya" rel="stylesheet">
</head>
<body>
<div class="entirecard">
<!-- your favorite animal's name goes here -->
<h3 class="name">HOUSE SPARROW</h3>
<!-- your favorite animal's image goes here -->
<img class="image1"src="housesparrow.jpg" alt="HOUSE SPARROW">
<div class="information">
<!-- your favorite animal's interesting fact goes here -->
<p class="fact">Although sparrows do not belong to the group of water birds, they can swim very fast to escape from the predators.
</p>
<!-- your favorite animal's list items go here -->
<li class="item-marker"><span class="items">Scientific Name </span>:Passer Domesticus</li>
<li class="item-marker"><span class="items">Average Length </span>:16 cm </li>
<li class="item-marker"><span class="items">Average Lifespan</span>:3 years </li>
<li class="item-marker"><span class="items">Average Flight Speed</span>:46km/hr </li>
<p class="description">
Sparrow has stout body, covered with brown, black and white feathers. Its wings are rounded. Males and females can be distinguished by the feather coloration: males have reddish backs and black bib, while females have brown backs with stripes. Sparrows are very social and they live in colonies called flocks.
</p>
</div>
</div>
</body>
</html>