this is quite simple i think, i have a navbar with my tabs that need to be displayed on all my html pages, i have a .html page for each tab. How can i make it so that i dont have to copy the navbar code into every html page (trying to avoid copying the code since this is messy and a lot of work if i gotta change something).
Im trying to avoid PHP in my project, id prefer Java or AngularJS
Heres the relevant part of the index.html
<ul class="nav nav-pills nav-justified">
<li class="active"><a href="index.xhtml">Home</a></li>
<li><a href="maschine.xhtml">Maschinen/Tätigkeiten</a></li>
<li><a href="person.xhtml">Personen</a></li>
</ul>