TRABAJO DE INFORMATICA
       FRAMES
       CAMILO SUAREZ
         GRADO 1102
       JORNADA TARDE
      ALVARO CISNEROS
FRAMES EN HTML
• Los frames se definen en una página especial,
  que en su código sólo contiene la definición
  de los frames o divisiones y la página que se
  va a cargar dentro de cada uno de ellos, por lo
  que deberemos crear aparte cada una de las
  páginas que van a contener los marcos.
EJEMPLOS
• Ejemplo.-
• <html>
    <head>
    <title>Mi página</title>
    </head>
    <frameset rows="20%,*" >
     <frame name="" src="a.html" marginwidth="10"
  marginheight="10" scrolling="auto" >
     <frame name="" src="b.html" marginwidth="10"
  marginheight="10" scrolling="auto" >
    </frameset>
  </html>
• O bien sin bordes:

  <html>
    <head>
    <title>Mi página</title>
    </head>
    <frameset rows="20%,*" frameborder="0"
  framespacing="0" border="0">
     <frame name="" src="a.html" marginwidth="10"
  marginheight="10" scrolling="auto" >
     <frame name="" src="b.html" marginwidth="10"
  marginheight="10" scrolling="auto" >
    </frameset>
  </html>

Poca luz frames

  • 1.
    TRABAJO DE INFORMATICA FRAMES CAMILO SUAREZ GRADO 1102 JORNADA TARDE ALVARO CISNEROS
  • 2.
    FRAMES EN HTML •Los frames se definen en una página especial, que en su código sólo contiene la definición de los frames o divisiones y la página que se va a cargar dentro de cada uno de ellos, por lo que deberemos crear aparte cada una de las páginas que van a contener los marcos.
  • 3.
    EJEMPLOS • Ejemplo.- • <html> <head> <title>Mi página</title> </head> <frameset rows="20%,*" > <frame name="" src="a.html" marginwidth="10" marginheight="10" scrolling="auto" > <frame name="" src="b.html" marginwidth="10" marginheight="10" scrolling="auto" > </frameset> </html>
  • 4.
    • O biensin bordes: <html> <head> <title>Mi página</title> </head> <frameset rows="20%,*" frameborder="0" framespacing="0" border="0"> <frame name="" src="a.html" marginwidth="10" marginheight="10" scrolling="auto" > <frame name="" src="b.html" marginwidth="10" marginheight="10" scrolling="auto" > </frameset> </html>