Code de frames_exemple.html

<html> <head> <title>Fichier qui appelle les frames</title> </head> <frameset cols="32%,60%,8%"> <frame src="frames_une.html" name="une" scrolling="Auto"> <frameset rows="35%,*"> <frame src="frames_deux.html" name="deux" scrolling="Auto"> <frame src="frames_trois.html" name="trois" scrolling="Auto"> </frameset> <frame src="frames_quatre.html" name="quatre" scrolling="Auto"> <noframes> <body> <p>Ce texte s'affichera si votre browser ne sait pas lire les frames.</p> </body> </noframes> </frameset> </html>