Alternative text or alt text is a description of an image or graphic file. It allows people who are visually impaired to understand what the image or graphic is and how it relates to its corresponding content. Here is an example of what alt text looks like in code:

<img src="/images/global/georgia-map.svg" alt="Map of Georgia">

In the above line of code, the tag is everything between the opening (<) and closing (>) carrot marks. In this instance, you are looking at an image tag.

This image tag has two attributes:

In the example code shared, the alt attribute for the image is set to "Map of Georgia." The presence of this description enables screen readers, a type of assistive technology used by people who are visually impaired, to describe the image out loud instead of defaulting to the image source (i.e., the file name). So, in this case, users who are visually impaired would hear “Map of Georgia” when they interact with that image on the webpage.

There are two types of images or graphics:

<img src="/images/global/”georgia-map.svg" alt="Map of Georgia">

<img src="/images/global/decorative-graphic.png" alt=" ">