Web accessibility service pageWeb accessibility service page

6.2:H106001 Refer a HTML file to each FRAME source.

Improper design

The example below is a page directly linked to a logo image.

Improper design:

  <FRAME src="lab_logo.gif" title="the logo of web accessibility service">
          

Proper demonstration

The proper way is to have the logo image written in the HTML file, and let the page link directly to HTML file and no the logo image.

Proper example:

  <FRAME src="logo.jsp" title="the logo of web accessibility service">
  

  the logo.jsp includes logo website, and the content below:
  <HTML>
  <BODY>
<IMG src="banner.gif" alt="logo of web accessibility service">
</BODY> </HTML>
End of Main Content