-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
executable file
·28 lines (24 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="card borderwithshadow">
<h3>Lynx</h3>
<img src="lynx.png" alt="lynx" class="cardimage">
<div class=borderwithoutshadow>
<p class="italictext"> Lynx has a natural hearing aid i.e. a weird tuft of hair on its ears!</p>
<ul class="liststyle">
<li><span>Lynx lynx</span>: Eurasian Lynx</li>
<li><span>Lynx canadensis</span>: Canadian Lynx</li>
<li><span>Lynx pardinus</span>: Iberian Lynx</li>
<li><span>Lynx rufus</span>: American Bobcat</li>
</ul>
<p>The lynx is a solitary cat that haunts the remote northern forests of North America, Europe, and Asia. Lynx are covered with beautiful thick fur that keeps them warm during frigid winters. Their large paws are also furry and hit the ground with a spreading toe motion that makes them function as natural snowshoes.</p>
</div>
</div>
</body>
</html>