How to add one html document to another?

thekris1234

New member
I am creating a website with many pages. On each page I want the logo and the menu bar WITH the tabs on it as well as the links. Can I put the code into another notepad doc? What would I save it as .TXT or .HTML? And what code would I use to add it to each webpage? I have a CSS sheet which makes the background etc of the menu bar. Can I add the links to the css document? if so how? what code would it be?

Thanks in advance
 
Create the template first. That works very well.
Make a html document with all the necessary tabs, menubar, logo etc.. that are common to all the pages on your site. Save this page as template.html.

Then you populate the template and save as pages with different name for each page.
 
with just html

you can do the following:

add everything to every page
use <iframe>
or use another language like PHP to include()

all files should be .html or .htm with just HTML
 
Back
Top