Web accessibility service pageWeb accessibility service page

12.1:H112000 Give each frame a title.

Improper design

The improper design below did not give each frame a title.

Improper design:

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

Proper demonstration

The proper example below provided title element for each frame.

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