|
Using Images Files in HTML:
|
To Create a Simple Frameset:
|
<FRAME> <FRAMESET ROW>Height and Width goes here</FRAMESET> <FRAME NAME=name of frame SRC="name of page that you want to display.html"> <FRAME NAME=name of frame SRC="name of page that you want to display.html"> <FRAME NAME=name of frame SRC="name of page that you want to display.html"> </FRAMESET> |
To Create Frames in Columns:
|
<FRAME> <FRAMESET COLS=a, b>(Where a and b (and any others) represent the width of corresponding column, as a percentage, number of pixels, or variable(*). <FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html"> <FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html"> <FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html">
<FRAME NAME="name
" (where name is reference for the frame) SRC="name of page that you want to display.html"> </FRAMESET> |
To Create Frames in Rows:
|
<FRAME> <FRAMESET ROW=a, b>(Where a and b (and any others) represent the width of corresponding row. FOR A ROW WITH A SINGLE FRAME: <FRAME NAME="name" SRC="filename.html"> FOR THE SECOND ROW WHICH IS DIVIDED INTO COLUMNS
<FRAMESET COLS="a, b">
|