1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>ESSAI<title>
<script type="text/javascript">
function AffichePageSuivante(fichier)
{
frames["contenu"].location.href=fichier;
}
</script>
</head>
<body>
<iframe width="100%" height="63px" name="commandes" src="files/commandes_cours.html" marginwidth="0" marginheight="0"> </iframe>
<iframe width="100%" height="90%" name="contenu" src="page1.html" > </iframe>
<script type="text/javascript">
AffichePageSuivante("page2.html")
</script>
</body>
</html> |