Web accessibility service pageWeb accessibility service page

13.3:H213202 Use different explanation for each different link.

Improper design

Different Web address super link, do not use the same super link explanation. If unavoidable, then use title character in the A label, thus to distinguish the difference. Below is an example of the use of same super link explanation, and the absence of title character to distinguish the difference. In the example below, the upper home page is super linked to the E-Government home page, and the lower home is super linked to the Executive Yuan Research home page.

Improper design:

  <A href="http://www.gov.tw">homepage</A> > 
  <A href="ex.jsp">executive yuan</A> > 
  <A href="ex.jsp">executive yuan research center</A> >recent news
  <H2>recent news...</H2>
  <P>the content of recent news...</P>
  Related information please refer to the executive yuan research Web site<A href="http://www.rdec.gov.tw">homepage</A>
            

Proper demonstration

Use title character in the A label to distinguish the difference.

Proper example:

  <A href="http://www.gov.tw" title="return to my E-Government homepage">homepage</A> > 
  <A href="ex.jsp">executive yuan</A> > 
  <A href="ex.jsp">executive yuan research center</A> >recent news
  <H2>recent news...</H2>
  <P>content of the recent news...</P>
  Related information.....please refer to the executive yuan research Web site
  <A href="http://www.rdec.gov.tw" title="return to executive yuan research homepage">homepage</A>
            

Set different text super link explanation.

Proper example:

  <A href="http://www.gov.tw">homepage</A> > 
  <A href="ex.jsp">executive yuan</A> > 
  <A href="ex.jsp">executive yuan research</A> > recent news
  <H2>recent news...</H2>
  <P>content of the recent news...</P>
  Related information please refer to the executive yuan research Web site.....
  <A href="http://www.rdec.gov.tw">return to the executive yuan research homepage</A>
            
End of Main Content