Salut tout le monde !
Je m'arrache les cheveux depuis un bon bout de temps sur cette problématique :
Comment rendre aux normes W3C ce frameset ??? :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET rows="150, *" BORDER=0 FRAMEBORDER=0>
	<FRAME src="contents_of_frame1.html" noresize scrolling=No>
	<FRAMESET cols="200, *" BORDER=0 FRAMEBORDER=0>
		<FRAME src="contents_of_frame2.html" noresize scrolling=No>
		<FRAME src="contents_of_frame3.html" noresize>
	</FRAMESET>
</FRAMESET>
</HTML>
Merci beaucoup !