Sachsentext

All "input" elements with a type of "image" must have an "alt" attribute

All input elements with a type of "image" should have an "alt" attribute.

Example

Wrong

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

Right

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