| IFRAME |
|
| This tag creates floating frames within your document, which are different from normal frames in that they can be manipulated independant of the rest of the document. For example: |
|
| <IFRAME NAME="PAGE3" SRC="https://www.WalkTheGeek.com">
</IFRAME> |
|
| IFRAME Attributes: |
|
| ALIGN="LEFT, RIGHT or CENTER" |
| This attribute is used to define how the floating frames align with the right (ALIGN="RIGHT") and left (ALIGN="LEFT") sides of the document. The ALIGN="CENTER" command will position the frame equidistant from the left and right sides of the document. |
|
| BORDER="n" |
| This attribute is used to define the thickness of the border around the frame, and is measured in pixels. |
|
| BORDERCOLOR="#RRGGBB" or a color in qoutes, such as "RED", "BLUE" or "YELLOW" |
| This attribute sets the color of the element to which it was invoked, this case being the border color of the floating frame. It can be applied to anything that can be colored, such as text, borders, or backgrounds. The color can be defined using a proper color name such as "RED" or with an #RGB (Red-Green-Blue) value. |
|
| FRAMEBORDER="1" or "0" |
| This attribute is used to define whether or not a border will or will not be visible aroung the frame. A value of zero (FRAMEBORDER="0") indicates that no border is to be displayed, while a value of one (FRAMEBORDER="1") will display the border. |
|
| FRAMESPACING="n" |
| This attribute specifies the amount of space to be left between frames, and is measured in pixels. |
|
| HEIGHT="n" |
| This attribute specifies the HEIGHT, measured in pixels, of the object to which it has been assigned. |
|
| HSPACE="n" |
| This attribute will set the amount of blank space, measured in pixels, on either side of the object. |
|
| ID=" ... " |
| The ID attribute is used to assign a unique ID selector (identification) to the tag in which it is invoked. A style may be assigned to that ID, which will effect only that one instance of the attribute. |
|
| MARGINHEIGHT="n" |
| This attribute defines the amount of blank space to be displayed on the top and bottom of the frame, and is measured i pixels. |
|
| MARGINWIDTH="n" |
| This attribute defines the amount of blank space to be displayed on the left and right sides of the frame, and is measured in pixels. |
|
| NAME=" ... " |
| This tag is used to mark a location within a document with a unique name. This named location can then be quickly moved to by means of a hyperlink using the HREF="#URL" attribute. Note the pound (#) sign before the URL. The pound sign used in this way indicates to the browser that the target location has been defined by the NAME=" ... " attribute. |
|
| NORESIZE |
| This attribute indicates resizing of the frames by dragging with the mouse is not allowed. |
|
| SCROLLING="YES" or "NO" |
| This attribute specifies whether or not scrolling will be allowed within the frame. |
|
| SRC="URL" |
| This attribute is used to define the relative or absolute location (URL) of a file to be used within the frame. |
|
| STYLE=" ... " |
| Used to specify which style sheet commands to apply to the instance of the STYLE attribute invoked within the tag. |
|
| WIDTH="n" |
| This attribute defines the width of the frame, and is measured in pixels. |
|
| VSPACE="n" |
| This attribute is used to define the amount of space which will appear at the top and bottom of the frame, within the frame. |
|
This tag also accepts the following Event Handlers:
onClick
onDblClick
onMouseDown
onMouseUp
onMouseOver
onMouseMove
onMouseOut
onKeyPress
onKeyDown
onKeyUp |