Media

Embeds an image into the page.

<img src="image.jpg" alt="Description" />

Embeds an audio player for sound files.

<audio controls>
  <source src="music.mp3" type="audio/mpeg" />
</audio>

Embeds a video player into the page.

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4" />
</video>

Specifies multiple media sources for audio or video.

<source src="file.ogg" type="audio/ogg" />

Adds subtitles or captions to a video.

<track src="subtitles.vtt" kind="subtitles" srclang="en" label="English" />

Embeds another webpage or media content like YouTube videos into the page.

<iframe src="https://example.com" width="300" height="200"></iframe>

Last updated