-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
executable file
·29 lines (29 loc) · 1.25 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" type = "text/css" href="css/styles.css">
</head>
<body>
<div class = "tradingCard flex-container">
<!-- your favorite animal's name goes here -->
<h3>Greyhound</h3>
<!-- your favorite animal's image goes here -->
<img src="images/Greyhound_Close-up.jpg" alt="Greyhound">
<div class = "info-container">
<!-- your favorite animal's interesting fact goes here -->
<p class="interesting-fact"> Clocked against other breeds, this canine will nearly always be the victor because they can run as fast as 45 miles per hour.</p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Species</span>: Canus Lupus Familiarus</li>
<li><span>Average Weight Male</span>: 60 - 88 pounds</li>
<li><span>Average Weight Female</span>: 55 - 75 pounds</li>
<li><span>Average Lifespan</span>: 12 years</li>
</ul>
<!-- your favorite animal's description goes here -->
<p>Greyhounds are sweet, sensitive and reserved. Although they do shed some, they are one breed that does not typically trigger allergies. They can be timid, but if well socialized are affectionate and loyal companions. </p>
</div>
</div>
</body>
</html>