-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
28 lines (28 loc) · 820 Bytes
/
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>
</head>
<body>
<div>
<!-- your favorite animal's name goes here -->
<h3>Animal's name</h3>
<!-- your favorite animal's image goes here -->
<img src="placeholder.png" alt="name-of-your-animal">
<div>
<!-- your favorite animal's interesting fact goes here -->
<p>Write an interesting fact about your favorite animal...</p>
<ul>
<!-- your favorite animal's list items go here -->
<li><span>Label</span>: Item #1</li>
<li><span>Label</span>: Item #2</li>
<li><span>Label</span>: Item #3</li>
<li><span>Label</span>: Item #4</li>
</ul>
<!-- your favorite animal's description goes here -->
<p>Write a brief description about your favorite animal...</p>
</div>
</div>
</body>
</html>