|
||||||||||||||||
|
||||||||||||||||
Tag/Attributes |
Values/Comments |
|---|---|
| <frameset cols="n"
rows="n">
xx<frame src="filename" /> xx<frame src="filename" /> </frameset> |
Basic frames structure. Depending on the layout, you must specify either cols or rows or both. The value for "n" can be expressed as either a percentage or a number of pixels. Where necessary, be sure to include the file's path. Note that <frameset>...</frameset> moves <body>...</body> to the <noframes> section. | .
| target="framename" | Tells the browser in which frame to display the file referenced in <frame src="filename" />. See Page 47a for another example. |
| name="framename" | Labels the frame specified in the target attribute. See Page 47a for another example. |
|
xx<noframes>
xxxx<body> xxxxxxNoframes content... xxxx</body> xx</noframes> </frameset> |
This content is displayed in browsers which cannot display frames. Note that the (final) </frameset> tag comes after the <noframes> section. |
| target="_self"
target="_blank" target="_top" target="_parent" |
Review "Special Targets" on Page 47. |
| scrolling="yes"
scrolling="no" |
Turn scrolling on or off in this frame. |
| noresize="noresize" | Disables resizing this frame. |