![]() ![]() |
6.2:H106001 Refer a HTML file to each FRAME source.Improper designThe 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"> End of example Proper demonstrationThe 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> End of example |
![]() |