previous | start | next

IFRAME

<IFRAME
ALIGN=LEFT|CENTER|RIGHT|TOP|BOTTOM
FRAMEBORDER=1|0
HEIGHT=height
MARGINHEIGHT=height
MARGINWIDTH=width
NAME=name
SCROLLING=yes|no
SRC=address
WIDTH=width>
</IFRAME>

Defines a floating frame. The end-tag is required.

ALIGN=LEFT|CENTER|RIGHT|TOP|BOTTOM
Sets the alignment of the frame or of the surrounding text. The default is LEFT.
LEFT The frame is drawn as a left-flush "floating frame," and text flows around it.
CENTER Surrounding text is aligned with the center of the frame.
RIGHT The frame is drawn as a right-flush "floating frame," and text flows around it.
TOP Surrounding text is aligned with the top of the frame.
BOTTOM Surrounding text is aligned with the bottom of the frame.
FRAMEBORDER=1|0
Renders a 3-D edge border around the frame. 1 (default) inserts a border. 0 displays no border.
HEIGHT=height
Controls the height (in pixels) of the floating frame.
MARGINHEIGHT=height
Controls the margin height for the frame, in pixels.
MARGINWIDTH=width
Controls the margin width for the frame, in pixels.
NAME=name
Provides a target name for the frame.
SCROLLING=yes|no
Creates a scrolling frame.
SRC=address
Displays the source file for the frame.
WIDTH=width
Controls the width of the floating frame, in pixels.

Example

<IFRAME FRAMEBORDER=0 SCROLLING=NO SRC="sample.htm"></IFRAME>


previous | start | next