If yes you may consider the use of an iframe (a page into another one as a window), is an easy answer to your needs so try it.
Sample code:
Quote:
<IFRAME SRC="recipe.html" TITLE="The Famous Recipe">
<!-- Alternate content for non-supporting browsers -->
<H2>The Famous Recipe</H2>
<H3>Ingredients</H3>
...
</IFRAME>
|
On this sample you need to change "recipe.html" with the file you want to inser (remember if the file is located on another directory different the one you are inserting the code you must add the full path to this directory. For more info about iframe you can click
here or just type on google "iframe syntax" as i did
;)