Web accessibility service pageWeb accessibility service page

1.13:H101112 Provide redundant text links for each active region of a server-side image map.

Improper design

Below is an example of the super link in the server side image map that does not have corresponding text super link within the Webpage.

Improper design:

  <A href="cgi-bin/serverside.map">
  <IMG src="map1.gif" alt="Taiwan R.O.C the five Yuan Web sites in the central government" ismap="#Map1">
  </A>
          

Proper demonstration

A proper design targets all super links in the server side image map, and provides correspondence text link in the Webpage.

Proper example:

  <A href="cgi-bin/serverside.map">
  <IMG src="map1.gif" alt="Taiwan R.O.C the five Yuan Web sites in the central government" ismap="#Map1">
  </A>
  |<A href="http://www.ly.gov.tw/" target="_blank">Executive</A>
  |<A href="http://www.exam.gov.tw/" target="_blank">Examination</A>
  |<A href="http://www.cy.gov.tw/" target="_blank">Control</A>
  |<A href="http://www.exam.gov.tw/" target="_blank">Judicial</A>
  |<A href="http://www.ey.gov.tw/" target="_blank">Administrative </A>|
          
End of Main Content