poca luz frames

4
TRABAJO DE INFORMATICA FRAMES CAMILO SUAREZ GRADO 1102 JORNADA TARDE ALVARO CISNEROS

Upload: oscar-trujillo

Post on 09-Aug-2015

171 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Poca luz frames

TRABAJO DE INFORMATICA FRAMES

CAMILO SUAREZGRADO 1102

JORNADA TARDEALVARO CISNEROS

Page 2: Poca luz frames

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.

Page 3: Poca luz frames

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>

Page 4: Poca luz frames

• 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>