You are on page 1of 2

------------ pagina1.

html--------------:
<html> <head> <title> Pgina1 </title> </head> <body bgcolor="gray"> frame izquierdo </body> </html>

------------ pagina2.html--------------:
<html> <head> <title> Pgina2 </title> </head> <body bgcolor="gray"> frame derecha arriba </body> </html>

------------ pagina3.html--------------:
<html> <head> <title> Pgina3 </title> </head> <body bgcolor="gray"> frame derecha centro </body> </html>

<html> <head> <title>Definicin de Frames</title> </head> <frameset rows="15%,*,75"> <frame src="pagina1.html"> <frame src="pagina2.html"> <frame src="pagina3.html"> </frameset> </html>

<html> <frameset rows="50%,50%"> <frame src="html_footer.htm" /> <frameset cols="25%,75%"> <frame src="html_Definition_list.htm" /> <frame src="html_comment.htm" /> </frameset> </frameset> </html>
Output:

And here is the code for it:


<HTML> <HEAD><TITLE>Nested Frames</TITLE> </HEAD> <FRAMESET ROWS="20%, *"> <FRAME SRC="topframe.html" NAME="top"> <FRAMESET COLS="50%, *"> <FRAME SRC="leftbot.html" NAME="left_bot"> <FRAME SRC="rightbot.html" NAME="right_bot"> </FRAMESET> </FRAMESET> <!-- Displayed in browsers whih do not support frames --> <NOFRAMES> There is no frame support on your browser. </NOFRAMES> </HTML>

You might also like