I want to create a universal header (and footer) using HTML/CSS/Javascript so that if I update it to one page, it automatically updates on the rest. I also want to be able to choose which link is showing up with the active class on it. Also, I am using bootstrap. Here are some criteria I need to meet:
Thank you in advance,
Albert
You can use jQuery to .load
a HTML file:
<div id="header"></div>
$('#header').load('static.html');
Alternatively, you could use iframe
to load your static header. See this answer for more information regarding the available techniques.