HTML FRAMES TAGS
|
FRAMES TAGS
|
DESCRIPTION |
EXAMPLES |
| <frameset> </frameset> |
Defines the frames document. |
|
| <frameset rows= "?,?"> |
Defines the rows within frameset using pixels or
percentages of width. |
<frameset rows= "15%,*"> <framename=
"top"> <framename= "bot"></frameset>
This creates a frameset with two rows. The top row has height of 15%
of window, while bottom row occupies the rest. |
| <frameset cols= "?,?"> |
Defines the columns within frameset using pixels
or percentages of width. |
<frameset cols= "15%,*"> <framename=
"left"> <framename= "right"></frameset>
This creates a frameset with two columns. The left row has width of
15% of window, while right column occupies the rest. |
| <frame name= "fred"> |
Defines the name of the area within a frameset and
is used as target to which web pages are loaded. |
<frameset cols= "15%,*"> <framename=
"left"> <framename= "right"></frameset>
This creates a frameset with two columns. The left row has name left,
while right column has right. |
| <frame src= "url" |
Defines the web page that opens in the named frame
area when the frameset is first loaded. |
<frameset rows= "15%,*">
framename= "top" src= "red.htm">
framename= "bot" src= "blue.htm">
</frameset>
Here red.htm will open in topframe & blue in bottom. |
| <frame marginwidth=1> |
Defines the left and right margins for the frame
in pixels. |
Must be greater than or equal to
1. |
| <frame marginheight=1> |
Defines the top and bottom margins for the frame
in pixels. |
Must be greater than or equal to
1. |
| <frame scrolling= value> |
Defines your use of scrollbars in your frame. |
yes = scrollbars always present.
no = scrollbars not shown.
auto = scrollbars shown only when needed. |
| <frame= noresize> |
Prevents the user from resizing frames. |
|
| <noframes> </noframes> |
Enclose the message to people who's browser do not
support frames |
<noframes> Your Browser does not support frames.
What planet do you come fram ? </noframes> |