HTMLHTML14 min read

HTML Images

Add images, write correct alt text, and set basic size.

David Miller
December 17, 2025
2.4k112

Images use .

Example

<img src="team.jpg" alt="Support team working" width="300" />

Preview

An image shows (300px wide)

Why alt is important

  • accessibility (screen readers)
  • shows text if image fails
  • helps SEO

Common beginner issue

Wrong path: make sure image is in same folder or correct folder path.

#HTML#Beginner