Web accessibility service pageWeb accessibility service page

14.2:H314201 Use graphic images to facilitate Web content understandability.

Improper design

When designing Web content, use graphic images to aide text explanation making the content more understandable to users. The design below is an example without the assistance of the graphic image.

Improper design:

  <P>In 2004, Taiwan sky will have the tallest skyscraper in the world, 
  it will be the tallest building in the whole world when it is completed.</P>
          

Proper demonstration

The same text if aided with image will be more understandable to users, and more easier to convey its information. But one should also use alt label on the image to provide text explanation.

Proper example:

<P>
<IMG src="taipei101.jpg" alt="the Taipei 101 money market building will be completed in 2004." 
width="150" height="200" border="1" align="top">
In 2004, Taiwan sky will have the tallest skyscraper in the world, 
it will be the tallest building in the whole world when it is completed.
</P>
          
End of Main Content