Displaying Images

The <img> tag embeds images in a webpage.

Attributes

  • src: Image URL or path
  • alt: Alternative text for accessibility
  • width/height: Dimensions (optional)
HTML
<img src="photo.jpg" alt="Description" width="300">

Your Task

Create a webpage with:

  1. An image with a placeholder URL
  2. An appropriate alt attribute
  3. A paragraph describing the image
AI Learning Assistant

Live Preview