HTML szerkesztés
  • Dj Faustus #1298
    Nem zártad le a <frameset> elemeket, ezért nem jelent meg a lábléc.
    Másrészt a bordercolor attribútum nem létezik.

    Szóval így lenne elvileg helyes:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
     <head>
      <title>Keretek</title>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
     </head>
     <frameset rows="150,*,75">
      <frame name="fejlec" noresize frameborder="1" scrolling="no" src="fejlec.html" style="border-color: #FF0000;">
      <frameset cols="100,*,100">
       <frame name="bal" noresize frameborder="1" scrolling="no" src="bal.html" style="border-color: #FF0000;">
       <frame name="kozepso" noresize frameborder="1" scrolling="auto" src="kozep.html" style="border-color: #FF0000;">
       <frame name="jobb" noresize frameborder="1" scrolling="no" src="jobb.html" style="border-color: #FF0000;">
      </frameset>
      <frame name="lablec" noresize frameborder="1" scrolling="no" src="lablec.html" style="border-color: #FF0000;">
      <noframes>
       <p>Böngésződ nem támogatja ezt az ósdi keretes megjelenítési megoldást. Nem is csodálom, én se támogatnám...</p>
      </noframes>
     </frameset> 
    </html>