-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
24 lines (24 loc) · 982 Bytes
/
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
<!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>Siberian Husky</h3>
<div><img src="husky.jpg" alt="Siberian Husky"></div>
<div class="box">
<p class="fact">First registered in Canada, They are remarkably adaptable and shouldn't be over-exercised on hot days as Huskies are more of a cold weather breed.</p>
<ul>
<li><span>Scientific Name:</span>: Canis Lupus Familiaris</li>
<li><span>Average Height:</span>: 21-23 inches</li>
<li><span>Life Expectancy:</span>: 12 - 15 years</li>
<li><span>Coat:</span>: Thick double coat</li>
</ul>
<p class="description">Originated in Siberia, Siberian Huskies have a beautiful, thick coat that comes in a variety of colours and markings. Their blue or multi-colored eyes and striking facial masks only add to the appeal of this breed.</p>
</div>
</div>
</div>
</html>