| Tag |
Attrib. |
Description |
Short Example |
| FRAMESET |
|
|
|
| |
COLS |
Divides the screen up into columns |
<frameset
cols="30%,70%"> |
| |
ROWS |
Divides the screen up into rows |
<frameset
rows="100,*,50"> |
| |
FRAMEBORDER |
Border in all frames |
<frameset
frameborder="no"> |
| IExplorer Only |
FRAMESPACING |
Sets space around the frame |
<frame
framespacing="20"> |
| Netscape Only |
BORDER |
Width of all the borders in pixels |
<frameset border="3"> |
| Netscape Only |
BORDERCOLOR |
Border color in all frames |
<frameset
bordercolor="#FF0000"> |
| FRAME |
SRC |
Page URL of the frame |
<frame
src="navigation.htm"> |
| |
NAME |
Sets the name of the frame for targets |
<frame name="main"> |
| |
SCROLLING |
Sets scrolling of the frame |
<frame scrolling="no"> |
| |
NORESIZE |
Stops the ability to resize |
<frame noresize> |
| |
MARGINWIDTH |
Sets left/right margins in the frame |
<frame marginwidth="10"> |
| |
MARGINHEIGHT |
Sets top/bottom margins in the frame |
<frame
marginheight="15"> |
| IExplorer Only |
FRAMEBORDER |
Border in the frame |
<frame frameborder="0"> |
| IExplorer Only |
FRAMESPACING |
Sets space around the frame |
<frame
framespacing="20"> |
| Netscape Only |
BORDERCOLOR |
Border color in the frame |
<frame
bordercolor="#FFFF00"> |
- <html><head>
<title>Mike Cunningham's Web Site</title>
</head>
<frameset cols="120,*" frameborder="0"
framespacing="0">
- <frame src="left.htm" name="left"
marginwidth="0" marginheight="0" noresize scrolling="no">
- <frameset rows="28,*"
frameborder="0" framespacing="0">
- <frame src="header.htm"
name="header" marginwidth="0" marginheight="0" noresize
scrolling="no">
- <frame src="main.htm" name="main"
marginwidth="5" marginheight="5" noresize>
- </frameset>
- <noframes>
- <body bgcolor="#FFFFFF"
text="#3C3C3C" link="#800000" vlink="#800000">
- <p align="center">You need a browser
with frame support to view this site.</p>
- </body>
- </noframes>
- </frameset>
</html> |