Sachsentext

All "input" elements with a type of "image" must have an "alt" attribute that describes the function of the input

All input elements with a type of "image" should have an "alt" attribute, and that attribute should describe the function of the image.

Example

Wrong

<input type="image" name="search" src="search.png" alt="A Button"/>

Right

<input type="image" name="search" src="search.png" alt="Search"/>