[html] affichage des frames sous IE

hakima -  
 Azrielo -
Bonjour,

j'ai programmé un petit site local en html il y'a 2 jours pour le présenter a l'ecole, seulement voila le site n'affiche rien sous IE, safari et sous Mozilla Firefox, jai qu'un ecran blanc. j'ai essayé sur Google Chrome ca marche. je viens de m'initier a la programmation et j'y connais pas grand chose. alors je vous demande si y'a quelque chose a ajouter a mon code source pour afficher mon site local sous IE et les autres browser

<html>
<head>
<title> Pharmacie Sacred Heart </title>
</head>
<body>
<frameset rows="300,*" border="0" framespacing="0" frameborder="0">
<frame src="C:\pharmacie\baniere.html" name="top" scrolling="no">

<frameset cols="200,*" border="0" framespacing="0" frameborder="0">

<frame src="C:\pharmacie\sommaire.html" name="left" scrolling="no">
<frame src="C:\pharmacie\acceuil.html" name="right" scrolling="no">

</frameset>
</frameset>

</body>
Configuration: Windows Vista
Safari 531.9.1

3 réponses

  1. Azrielo > http://azrielo.free.fr
     
    De 1 :
    tu as oubliée le
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    en début de code pour spécifier aux browsers que la page contient des frames,
    De 2 :
    Vire les 2 balises <body> elles ne te servent a rien !
    Donc :
    <html>
    <head>
    <title> Pharmacie Sacred Heart </title>
    </head>

    <frameset rows="300,*" border="0" framespacing="0" frameborder="0">
    <frame src="C:\pharmacie\baniere.html" name="top" scrolling="no">
    <frameset cols="200,*" border="0" framespacing="0" frameborder="0">
    <frame src="C:\pharmacie\sommaire.html" name="left" scrolling="no">
    <frame src="C:\pharmacie\acceuil.html" name="right" scrolling="no">
    </frameset>
    </frameset>
    </html>

    Info : :
    Ca sera dans tes C:\pharmacie\acceuil.html, C:\pharmacie\sommaire.html, C:\pharmacie\baniere.html que tu mettras le contenu !!!
    Azrielo :: http://azrielo.free.fr/ & Pour voir un exemples de frames http://azrielo.free.fr/.nav

    PS : Google est ton ami, il connaît presque tout si tu cherche par mots clés !
    1
  2. hakima
     
    y'as t'il quelqu'un pour m'aider, svp j'ai besoin d'aide urgent.
    0