Is there a way to create a menu that can be easily linked and displayed on multiple pages within a website?
I want to design a menu
and have it accessible on index.htm
, page2.htm
, page3.htm
, .. pageN.htm
as if it is present individually on each page.
In essence, I am looking for a method where I only have to write the menu once, but have it show up on all pages.
For instance:
Menu:
Home | Page 1 | Page 2 | Page 3 | Page N
And then on:
Page1.htm
Home | Page 1 | Page 2 | Page 3 | Page N
Content
More Content
Even More Content
...as well as...
Page2.htm
Home | Page 1 | Page 2 | Page 3 | Page N
Content
More Content
Even More Content
...and so on, so that any changes made to the menu content are automatically reflected across every page where the menu is referenced, similar to how CSS functions.
Thank you very much.