Hello! Please take a look at my site here: Test Multipage Site
This is just a simple site with a three-item menu. If you look at the source code, you’ll see that the HTML for the menu sidebar section is exactly the same throughout all four .htm files (index.htm, item1.htm, item2.htm, and item3.htm):
<div id="navigation">
<ul>
<li><a href="item1.htm">Item 1</a></li>
<li><a href="item2.htm">Item 2</a></li>
<li><a href="item3.htm">Item 3</a></li>
</ul>
</div>
So this means that if I want to add another item to the menu, I will have to change the HTML of every single other .htm file. And I have to make sure that the HTML of all the files are exactly the same, to maintain consistency. This is a pain, especially as more and more items get added to the menu. My question is: Is there a better way to do this?