I'm trying to append my menu by referring to an external JavaScript file without manually adding the menu in each of my files. How do I go about this? Here is the menu I intend to add. Btw, I'm using bootstrap. I placed the script src before my ending body tag.
<header class="container">
<div class="row">
<a href="..\index.html"><img class="col-sm-2" src="..\logo.png" /></a>
<nav class="col-sm-10 navbar navbar-inverse">
<div class="container-fluid">
<ul class="nav navbar-nav navbar-right text-uppercase">
<li><a href="..\index.html">Home</a></li>
<li><a href="..\about.html">About</a></li>
<li class="active"><a href="..\story_1.html">Revenge Is A Dish Best Served Cold</a></li>
<li><a href="..\gallery.html">Gallery</a></li>
</ul>
</div>
</nav>
</div>
</header>