> For the complete documentation index, see [llms.txt](https://digital-legacy-studios.gitbook.io/digital-legacy-studios-dapp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://digital-legacy-studios.gitbook.io/digital-legacy-studios-dapp/basics/gallery.md).

# Gallery

Photo Gallery

## Photo Gallery

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

### Gallery

*
*
*

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

```json
<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>
```
