-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (30 loc) · 1.12 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
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cat Breeds</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="cat-container">
<div class="cat-breed">
<img src="https://images.freeimages.com/images/large-previews/4bd/black-cat-1383472.jpg" alt="Breed 1">
<h3>Breed 1</h3>
<p>This is a brief description of Breed 1.</p>
<a href="#">Learn More</a>
</div>
<div class="cat-breed">
<img src="https://images.freeimages.com/images/large-previews/f19/maine-coon-cat-1542262.jpg" alt="Breed 2">
<h3>Breed 2</h3>
<p>This is a brief description of Breed 2.</p>
<a href="#">Learn More</a>
</div>
<div class="cat-breed">
<img src="https://images.freeimages.com/images/large-previews/bd1/cat-1404368.jpg" alt="Breed 3">
<h3>Breed 3</h3>
<p>This is a brief description of Breed 3.</p>
<a href="#">Learn More</a>
</div>
</div>
</body>
</html>