Frames

[Frame Basic][Frame Size][Frame Option][Frame Margin][Targeting Frames]

Frame Basic

<frameset> ... </frameset>
<frame src="url">
<noframes> ... </noframes>

HTML document included in <noframes> are for browsers not supported frames.
<HTML>
<HEAD>
</HEAD>
<FRAMESET>
<FRAME SRC="url">
</FRAMESET>
<NOFRAMES> ... </NOFRAMES>
<HTML>








Frame Size

<frameset cols=#>

<frameset cols=30%,20%,50%>
<frame src="A.html">
<frame src="B.html">
<frame src="C.html">
</frameset>
A B C
Click here for an exsample

<frameset rows=#>

<frameset rows=25%,25%,50%>
<frame src="A.html">
<frame src="B.html">
<frame src="C.html">
</frameset>
A
B
C
Click here for an exsample

COLS & ROWS

<frameset cols=20%,*>
<frame src="A.html">
     <frameset rows=40%,*>
     <frame src="B.html">
     <frame src="C.html">
     </frameset>
</frameset>
A B
C
Click here for an exsample

No Resize <frame noresize>

Default frame is resizable.








Frame Option

Frame Name
<frame name=#>
<a href=url target=#>

<frameset cols=50%,50%>
<frame src="A.html">
<frame src="B.html" name="HELLO">
</frameset>
A B






Margin <frame marginwidth=# marginheight=#>

<frameset cols=50%,50%>
<frame src="A.html">
<frame src="A.html" 
    marginwidth=50 
    marginheight=50>
</frameset>
AAAA AA
AA




Scrollbar <frame scrolling=#> #=yes, no, auto

#=auto is a default.




Targeting Frames

If you want to know about how to target different FRAMES,
then look at the page section of this HTML guide describing this in detail: Targeting Windows

[Page][Font][Text Style ][Image][Table][Form][Applet][Frames]
[Marquee][Image Map][Javascript][Entities][Tag Index]