Bought the HTML reference book from wrox.
In there is an example on how to embed HTML in HTML using the <object>.
But example does not work.
Any ideas welcome
Code sample embedding doc________________
<html>
<head>
<title> Embed HTML in HTML Example</title>
<body>
<object data="embedded_document.html">
Couldn't include document specified.
</object>
</body>
</html>
Code sample embedded doc________________
<html>
<head>
<title> Embedded document</title>
<body>
Here is a link to <a href="http://www.wrox.com"> Wrox.com </a>
</body>
</html>