lotte css

Media

Images

Basic Image

Aesthetic vintage image
<img src="https://i.pinimg.com/736x/40/2a/e5/402ae580b66af914561fc8b84663f478.jpg" alt="Aesthetic vintage image">

Image with Figure and Caption

Aesthetic vintage image
This is a caption for the image above
<figure>
  <img src="https://i.pinimg.com/originals/fc/ac/31/fcac3120cc547d3f94bec0cc3c1d50d5.gif" alt="Aesthetic vintage animation">
  <figcaption>This is a caption for the image above</figcaption>
</figure>

Audio

Basic Audio Player

<audio controls>
  <source src="https://samplelib.com/lib/preview/mp3/sample-3s.mp3" type="audio/mpeg">
  <source src="https://samplelib.com/lib/preview/ogg/sample-3s.ogg" type="audio/ogg">
  Your browser does not support the audio element.
</audio>

Video

Basic Video Player

<video controls width="400">
  <!-- Video by Life On Super 8 from Pexels -->
  <source src="https://www.pexels.com/download/video/3588884" type="video/mp4">
  Your browser does not support the video element.
</video>

Responsive Video

<div class="video-container">
  <video controls>
    <!-- Video by Life On Super 8 from Pexels -->
    <source src="https://www.pexels.com/download/video/3588884" type="video/mp4">
    Your browser does not support the video element.
  </video>
</div>