Hmm I solved this with some JQuery and stuff. Only problem is that when I included this it fd-up my link list below like this:
Before:
After:
This was after I pasted this JQuery stuff to include the index.header like this:
<title>FROGLEGS</title>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<link rel="stylesheet" href="css/stylesheet.css">
And further down:
<div id="header"></div>
Any idea on how to not get wrecked links like this:


