0% found this document useful (0 votes)
40 views2 pages

Frames

The document contains code for three HTML pages that divide the browser window into frames. Page 1 contains code for the left frame, page 2 for the top-right frame, and page 3 for the bottom-right frame. The main HTML page uses frame tags to display the three pages within a frameset divided into rows.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views2 pages

Frames

The document contains code for three HTML pages that divide the browser window into frames. Page 1 contains code for the left frame, page 2 for the top-right frame, and page 3 for the bottom-right frame. The main HTML page uses frame tags to display the three pages within a frameset divided into rows.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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