HTML/CSSBeginner#html#accessibility

What is the purpose of the alt attribute versus the title attribute on images?

alt provides a text alternative shown when the image fails to load and read aloud by screen readers — it's required for accessibility. title shows a tooltip on hover and is supplementary, not a reliable accessibility mechanism since it's not consistently exposed to assistive tech.

Example
<img src="logo.png" alt="Company Logo" title="Hover tooltip text">

Related Questions

1
HTML/CSSBeginner#html#javascript

What is a data attribute and how is it used?

Open
2
HTML/CSSBeginner#html#elements

What is the difference between <ul>, <ol>, and <dl>?

Open
3
HTML/CSSAdvanced#css#media-queries

How do you make a webpage print-friendly using CSS?

Open