Web accessibility service pageWeb accessibility service page

1.4:H101003 Provide alternative text for all image-type buttons in forms.

Improper design

There is no textual explanation to replace table button image.

Improper design:

  <INPUT type="text" name="textfield">
  <INPUT name="ButtonImage" type="image" src="search.gif">
          

Proper demonstration

Set the ˇ§altˇ¨ character in the table button image for replacement text explanation.

Proper example:

  <INPUT type="text" name="textfield2">
  <INPUT name="ButtonImage2" type="image" src="search.gif" alt="search button">
          
End of Main Content