-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancel.html
30 lines (29 loc) · 1.22 KB
/
cancel.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="style.css">
</head>
<body>
<div class="outline width-310 linear-gradient">
<!-- your favorite animal's name goes here -->
<h3>Tiger</h3>
<!-- your favorite animal's image goes here -->
<img src="tigerWater.png" alt="tiger swimming in water">
<div class="outline width-300 color-bg">
<!-- your favorite animal's interesting fact goes here -->
<p class="italic align-left">A tiger's stripes are like camouflage, allowing it to stalk and ambush prey.</p>
<ul class="align-left">
<!-- your favorite animal's list items go here -->
<li><span class="bold">Scientific Name:</span> Panthera tigris</li>
<li><span class="bold">Average Height:</span> 1 meter</li>
<li><span class="bold">Average Lifespan:</span> 13 years</li>
<li><span class="bold">Habitats:</span> Rainforests, Grasslands, Savannas</li>
</ul>
<!-- your favorite animal's description goes here -->
<p class="align-left">The tiger is a well-known and easily recognized animal. Many admire the tiger's majestic appearance. No two tigers have the same stripe pattern.</p>
</div>
</div>
</body>
</html>