If you want to embed a page in another, use iframe. Syntax:
</iframe> </pre>
The URL points to the location of the separate page. You can also point to a local file.
You can also set height and width:
<pre lang="HTML"> <iframe src="demo_iframe.htm" width="200" height="200"></iframe></pre>
For removing the borders, use following code:
<pre lang="HTML"><iframe src="demo_iframe.htm" frameborder="0"></iframe></pre>
<div class="signature">---AkiDakiObi</div></x-turndown>