I am wondering if I can do an include from HTML?
No you can't...
Unless you use Frames wich is just a really uncool thing to do nowadays.
What you could have is a call to a Javascript function that generates the menu for you.
Lets say you have three pages PageUno.htm, PageDos.htm and PageTres.htm on the HEAD of everyone call a Javascript file and right after the <body> tag have something like
Code:
<script>
create_menu;
</script>
This way if you need to change something on your menu you just change it on the Javascript file and it will get generated on all three pages without having to do it for each one.
PRO:Once the Javascript is loaded it will get cached, making the whole thing faster on subsequent pages.
CON: if Javascript is disabled the whole menu will be gone.
CON: If you want your pages to be accesible, the code generated by the function may not be picked up by some readers.
If you don't want to go through all the problem of creating your own ouptu lines like :
Code:
document.write('<table><tr><td>insert your own content</td></tr></table>');
check the internet for scripts that get the HTML as an input and output the Javascript lines for you.
good luck
grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein
-----------------------------------------------