HTML & CSS Masterclass Tutorial

Comprehensive guide to modern HTML and CSS development.

Images & Media

Images & Media

Webpages aren't just text; images and videos make them engaging.

Images <img>

The image tag is self-closing and requires two crucial attributes:

  • src: The path/URL to the image file.
  • alt: Alternative text describing the image. Critical for screen readers (accessibility) and if the image fails to load.

HTML5 Video & Audio

You can embed media directly without plugins.

  • <video>: Embeds video. Attributes like controls, autoplay, and loop manage behavior.
  • <audio>: Embeds sound files.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics