Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Pets Gallery</title> | |
<style> | |
.gallery { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
gap: 10px; | |
} | |
img { | |
width: 100%; | |
height: auto; | |
border-radius: 8px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Pets Gallery</h1> | |
<div class="gallery"> | |
<img src="badge.png" alt="Pet 1 description"> | |
<img src="path_to_pet2_image.jpg" alt="Pet 2 description"> | |
<img src="path_to_pet3_image.jpg" alt="Pet 3 description"> | |
</div> | |
</body> | |
</html> | |