Gallery

Photo Gallery

Welcome to the photo gallery! Here you will find a collection of beautiful images displayed in an organized manner.

Each photo is a glimpse into a different world, capturing moments that evoke emotion and tell a story. Enjoy browsing through the gallery!

<div class="gallery">
  <div class="photo">
    <img src="photo1.jpg" alt="A beautiful scene" />
    <p>Caption for photo 1</p>
  </div>
  <div class="photo">
    <img src="photo2.jpg" alt="Another beautiful scene" />
    <p>Caption for photo 2</p>
  </div>
  <div class="photo">
    <img src="photo3.jpg" alt="Yet another beautiful scene" />
    <p>Caption for photo 3</p>
  </div>
</div>

<style>
  .gallery {
    display: flex;
    justify-content: space-around;
  }
  .photo {
    margin: 5px;
    text-align: center;
  }
  img {
    max-width: 100%;
    height: auto;
  }
</style>

Last updated