Code:
<object data="PAGE.html" type="text/html">
Your browser does not appear to support the
<code><object></code> element,
the document that is supposed to be here is
<a href="PAGE.html">PAGE.html</a>.
</object>
or you could try an iframe, which is probably better as it's better supported at the moment (IE has problems with object I think):
Code:
<iframe src="PAGE.html"
width="90%" height="300">
Your browser does not appear to support the
<code><iframe></code> element,
the document that is supposed to be here is
<a href="PAGE.html">PAGE.html</a>.
</iframe>
or you could always merge the two:
Code:
<object data="PAGE.html" type="text/html">
<iframe src="PAGE.html"
width="90%" height="300">
Your browser does not appear to support the
<code><object></code> or the
<code><iframe></code> element,
the document that is supposed to be here is
<a href="PAGE.html">PAGE.html</a>.
</iframe>
</object>
But again I think IE will have problems with that, and may show a box for both the iframe and object. I'd just stick with the iframe.
Bookmarks