Which of the images below have a meaningful, empty, or missing alt attribute?
This image has a meaningful alt attribute that describes the image content.
<img src="image.jpg" alt="A person stands on a wide,
smooth sand dune with gentle curves. The sand is
illuminated by warm light, contrasting with darker
areas in the background, suggesting a vast, open
desert landscape.">
This image is decorative. The alt attribute is present but empty, so assistive technologies will ignore it.
<img src="image.jpg" alt="">
This image is inside a link that has visible text. The image is decorative in this context, so alt="" is correct — the link text provides the accessible name.
<a href="#">
<img src="image.png" alt="">
Visit our website
</a>
This image has no alt attribute at all. Assistive technologies may announce the filename instead.
<img src="image.jpg">