← Back to Lessons

Images and Multimedia in HTML

Images

Use <img src="image.jpg" alt="Description"> to embed images.

Example

<img src="dog.jpg" alt="A cute dog">

Multimedia

You can embed audio and video using <audio> and <video>.

<video controls>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>