Web accessibility service pageWeb accessibility service page

12.2:H212101 If the Web name does not explain the content, then additional explanation should be added.

Improper design

The improper design below did not use longdesc element to provide additional explanation for the page box for users to understand its main functions when Web name did not explain the content.

Improper design:

  <FRAMESET cols="150,*" frameborder="yes" border="2" framespacing="0">
  <FRAME src="navigate.jsp">
  <FRAME src="content.jsp">
  </FRAMESET>
          

Proper demonstration

When title element did not explain Web page content clearly, use longdesc element to provide additional text file (navigatepurpose.txtĦBcontentpurpose.txt).

Proper example:

<FRAMESET cols="150,*" frameborder="yes" border="2" framespacing="0">
<FRAME src="navigate.jsp" title="Web navigation function" longdesc="linkto/navigatepurpose.txt">
<FRAME src="content.jsp" title="main content box" longdesc="linkto/contentpurpose.txt">
</FRAMESET>
          
End of Main Content