Bonjour,
je voudrai créer une page WEB. avant de commencer, je me suis mis à chercher une solution pour diviser ma page en plusieurs pages , entête, corps, bas de page ....
enfin j'ai entendu parler de frames. bon voila , j'ai un petit PB à les mettre en place.
quelqu'un pourrai m'aider svp ?
voila mn script de test :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Ceci est une page (x)HTML de test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<h2>Page de test</h2>
<HTML>
<HEAD></HEAD>
<FRAMESET COLS="20%,80%">
<FRAME SRC="menu.php">
<FRAMESET ROWS="30%,70%"> <!-- Les menus -->
<FRAME SRC="entete.php"> <!-- L'en-tête -->
<FRAME SRC="pied_de_page.php"><!-- Le pied de page -->
</FRAMESET>
</FRAMESET>
</HTML>
<!-- Le corps -->
<body>
<div id="corps">
<h1><center>Mon super site</center></h1>
<p>
Bienvenue sur mon super site !<br />
</p>
</div>
</body>
</html>
