-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
29 lines (29 loc) · 1.08 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" href="styles.css">
</head>
<body>
<div class="first">
<!-- your favorite animal's name goes here -->
<h3>DOG</h3>
<!-- your favorite animal's image goes here -->
<img class ="dog"src="dog.jpg" alt="Tyson, my favorite dog">
<div class="second">
<!-- your favorite animal's interesting fact goes here -->
<p id="fact">Dogs and humans have the same type of slow wave sleep (SWS) and rapid eye movement (REM) and during this REM stage dogs can dream. </p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Scientific Name</span>: Canis lupus familiaris</li>
<li><span>Average Length</span>: 10 inches</li>
<li><span>Average Lifespan</span>: 12 years</li>
<li><span>Habitat</span>: Forests </li>
</ul>
<!-- your favorite animal's description goes here -->
<p>The domestic dog is a member of genus Canis (canines) that forms part of the wolf-like canids, and is the most widely abundant carnivore. </p>
</div>
</div>
</body>
</html>