IFRAME
The IFRAME element allows you to insert an inline frame
within a block of text. The file is inserted by the src
attribute of the IFRAME element, the content of the
IFRAME element itself is only displayed by user agents
that do not support or are not configured to display frames.
In the example below, you will see one of two messages:
- Your user agent does not support inline frames or is
currently configured not to display frames. However, you may visit
the related document.
- This document is not part of the current document
you are viewing. It is a separate document being called
through the use if the IFRAME element.
Source:
<IFRAME src = "iframe-insert.html"
width = "400"
height = "100"
scrolling = "auto"
frameborder = "1"
>
[Your user agent does not support inline
frames or is currently configured not to
display frames.
However, you may visit
<A href="iframe-insert.html">
the related document.</A>
</IFRAME>
|
|
Want to
see it?
|
Additional Resources:
HTML 4.01 Tags
|