-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard edit.html
More file actions
28 lines (28 loc) · 982 Bytes
/
card edit.html
File metadata and controls
28 lines (28 loc) · 982 Bytes
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 href="styles.css" rel="stylesheet">
</head>
<body>
<div class="card">
<!-- your favorite animal's name goes here -->
<h3>Gale the Black Cat</h3>
<!-- your favorite animal's image goes here -->
<img class="image" src="gattaccio.jpg" alt="Black cat">
<div class="item">
<!-- your favorite animal's interesting fact goes here -->
<p class="fact">This kind of cat is the most hated in history, but is still very cute.</p>
<ul class="features">
<li><span>Name</span>: Gale the Cat </li>
<li><span>Color</span>: Black </li>
<li><span>Class</span>: Mammal </li>
<li><span>Habitat</span>: Cats can live everywhere </li>
</ul>
<!-- your favorite animal's description goes here -->
<p class="description">This is my cat, called Gale. I found him 5 years ago in my garden. Since that time Gale is always with me!</p>
</div>
</div>
</body>
</html>