Web accessibility service pageWeb accessibility service page

9.5:H309204 Add the Accesskey for the links that was most often used.

Improper design

In the example, there is no accesskey set up for [return to main page] super link.

Improper design:

<P>strungstrung communication</P>
<P>
[<A href="linkto/ex.jsp">return to homepage</A>][<A href="linkto/ex.jsp">cellphone information</A>]
[<A href="linkto/ex.jsp">cellphone accessaries</A>][<A href="linkto/ex.jsp">guarantee information</A>]
</P>
          

Proper demonstration

In the A label the use of accesskey element provided accesskey which set the alt+C to be the accesskey for strungstrung communication [return to main page].

Proper example:

<P>strungstrung communication</P>
<P>
[<A accesskey="C" href="linkto/ex.jsp">return to homepage</A>]
[<A href="linkto/ex.jsp">cellphone information</A>]
[<A href="linkto/ex.jsp">cellphone accessaries</A>][<A href="linkto/ex.jsp">guarantee information</A>]
</P>
          
End of Main Content