Web accessibility service pageWeb accessibility service page

10.6:H310005 Do not use space to separate adjacent links

Improper design

The use of space, table TD,   and span to separate adjacent links.

Improper design:

  <P>
  <A href="http://www.yam.com/">yam</A> 
  <A href="http://www.pchome.com.tw/">PChome</A> 
  <A href="http://www.yahoo.com.tw/">Yahoo!kimo</A>
  </P>
  <TABLE>
    <TR>
      <TD><A href="http://www.ey.gov.tw/">executive yuan</A></TD>
      <TD><A href="http://www.ly.gov.tw/index.jsp">Legislative yuan</A></TD>
      <TD><A href="http://www.judicial.gov.tw/">judical yuan</A></TD>
    </TR>
  </TABLE>
  <P>
  <A href="http://www.president.gov.tw/">president</A> &nbsp;
  <A href="http://www.exam.gov.tw/">examination yuan</A> &nbsp;
  <A href="http://www.cy.gov.tw/">control yuan</A>
  </P>
  <P>
  <A href="http://www.ntu.edu.tw/">Taiwan university</A><span>
  <A href="http://www.nthu.edu.tw/">Chin-Hua university</A><span>
  <A href="http://www.tku.edu.tw/">Tan-Jung University</A>
  </P>
  

Proper demonstration

Use [ ]¡B( )¡B{ }¡B|¡B¡Ð symbols to separate adjacent links.

Proper example:

[<A href="http://www.yam.com/">yam</A>] 
[<A href="http://www.pchome.com.tw/">PChome</A>]
[<A href="http://www.yahoo.com.tw/">Yahoo!kimo</A>] 
  <TABLE>
    <TR>
      <TD><A href="http://www.ey.gov.tw/">executive yuan</A> - </TD>
      <TD><A href="http://www.ly.gov.tw/index.jsp">legislative yuan</A> - </TD>
      <TD><A href="http://www.judicial.gov.tw/">judical yuan</A> - </TD>
    </TR>
  </TABLE>
  <P>
  {<A href="http://www.president.gov.tw/">president</A>}
  {<A href="http://www.exam.gov.tw/">examination yuan</A>}
  {<A href="http://www.cy.gov.tw/">control yuan</A>}
  </P>
  <P>
  <A href="http://www.ntu.edu.tw/">Taiwan university</A> |
  <A href="http://www.nthu.edu.tw/">Ching-Hua university</A> |
  <A href="http://www.tku.edu.tw/">Tan-Jung university</A>
  </P>

End of Main Content