Web accessibility service pageWeb accessibility service page

1.11:H101210 Use of accessible image to replace ASCII word art.

Improper design

For example, we often use the smile symbol:) ¡Ain some screen decoder it appeared as ¡§:¡¨ and ¡§)¡¨, as a result the original meaning was not conveyed.

Improper design:

  <P>I am very happy today :)</P>
          

Proper demonstration

When conveying a smiley face on the Web site using the symbol should use the original image and provide a plain text for such image.

Proper example:

<P>I am very happy today<IMG src="smile.gif"  alt="smile image" align="top"></P>
          
End of Main Content