-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.29 KB
/
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
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 id="mainpage">
<!-- your favorite animal's name goes here -->
<h3 id="shadow">Pomeranian</h3>
<!-- your favorite animal's image goes here -->
<img id="dogimage" src="Pomeranian-GettyImages.png" alt="Pomeranian Dog">
<div id="secondpage">
<!-- your favorite animal's interesting fact goes here -->
<p id="fact">The Pomeranian (often known as a Pom) is a breed of dog of the Spitz type that is named for the Pomerania region in north-west Poland and north-east Germany in Central Europe.</p>
<ul id="list">
<!-- your favorite animal's list items go here -->
<li><span class="label">Alias</span>: Zwergspitz</li>
<li><span class="label">Height</span>: 7 to 12 inches</li>
<li><span class="label">Weight</span>: 3 to 7 pounds</li>
<li><span class="label">Lifespan</span>: 12 to 16 years</li>
</ul>
<!-- your favorite animal's description goes here -->
<p id="info">Pomeranians are alert and aware of changes in their environment.The top coat forms a ruff of fur on the neck, which Poms are well known for, and they also have a fringe of feathery hair on the hindquarters.</p>
</div>
</div>
</body>
</html>