Photo Gallery

A page displaying multiple images in rows/columns.

<img>, layouts, alt text.

Example:

<!DOCTYPE html>
<html>
<head>
  <title>Photo Gallery</title>
</head>
<body>
  <h1>My Photo Gallery</h1>
  <img src="img1.jpg" alt="Image 1" width="200">
  <img src="img2.jpg" alt="Image 2" width="200">
  <img src="img3.jpg" alt="Image 3" width="200">
</body>
</html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *