|
Adding Alternative Text to ImagesIn order to guarantee accessibility for all users, alternative, or ALT, text is essential for all images used in content delivered online. Screen readers, such as JAWS and NonVisual Desktop Access, cannot interpret images beyond location and file name, so we must manually provide descriptive text to images which screen readers can read to visually-impaired users.
Depending on the software used, an important image file without ALT text may be ignored by the screen reader, or only its file name could be read.
When adding an image directly within a textbox editor in Blackboard, such as when creating an announcement or item, enter the ALT text on the Insert Image pop-up page. 1. Click the Attach Image button on the textbox editor toolbar. 2. When the Insert Image pop-up page appears, browse for and attach the desired image. 3. Scroll down to section two, Image Options. Enter a brief description of the image in the ALT Text field. 4. When all options have been set, click the Submit button to add the image within the textbox. 5. To confirm ALT text is properly assigned, simply place your mouse over the image within the textbox. Your ALT text should be displayed.
Adding ALT Text in Word 2007
Adding ALT Text to HTMLThe standard HTML tag for an image is: <img src="filename.jpg"> Using an image file named "Quarrymen.jpg" as an example, a screen reader program will read the standard HTML image tag as, "Image, quarrymen dot j, p, g." File names typically contain little to no description of the image presented, and fail to provide important content information to visually-impaired users. To get a screen reader to read a description of the image, rather than the file name, we must assign the ALT text attribute, as seen below: <img src="Quarrymen.jpg" alt="Teenage John Lennon performing with high school band, The Quarrymen"> Using this example, screen reader software will read the image as, "Image, teenage john lennon performing with high school band, the quarrymen." Null ALT TextImages that require no description, such as those used in borders and as content spacers, should be assigned null ALT text, which will prompt screen readers to ignore them. The proper null ALT text attribute is alt="", with no characters or spaces between the quotation marks. See the example below: <img src="border.jpg" alt=""> Using the code above, screen readers will ignore the presence of the border image, and continue on to read more essential data. |