Images

"Alt text" or "alt attributes" are the most important components in making images accessible. These should communicate the purpose of a given image correctly and concisely. It’s always important to provide descriptive information for any images that are not decorative images so users with screen readers can know what the image is. Some of examples of alt text include:

<img src="cat.gif" width="100" height="100" alt="an image" />
Because the alt text does not describe what the image is of it is a horrible example of alt text.
<img src="cat.gif" width="100" height="100" alt="a gray cat" />
Better than the above example, but perhaps not enough information to give a clear idea of what the image is.
<img src="cat.gif" width="100" height="100" alt="a gray cat standing on a window ledge looking out into the back yard" />
This alt text may be the best description of the image, however it may also be a bit too long for some.