Inline Frame (HTML)

IFRAMES are very similar to normal HTML frames.
But, while normal frames must exist within a frameset, inline frames can exist inside the body of an HTML document, just like an image.
With normal frames, the frameset tag is used to determine the size of its contained frames. Since the inline frame does not have any surrounding frameset, it dictates its own dimensions. The common attributes of an iframe include:

NAME
  example value:"myInlineFrame"
  pupose: A name to identifiy the IFRAME

SRC
  example value:"http://www.everything2.com
  description: Any URI

WIDTH
  example value:"100" or "25%"
  description: Width can be pixels or percentage

HEIGHT
  example value:"50" or "10%"
  description: Height can be pixels or percentage

Example IFRAME Tag

<IFRAME Name="iframe2" Src="http://www.everything2.com" height=80 width=400>

Anything between the opening and closing tags are displayed by browsers that do not support IFRAMES. This content is ignored by browsers that can display IFRAMES.

</IFRAME>

Log in or register to write something here or to contact authors.