There are plenty of examples of how to included content from one html file in another, including this:
CodePudding user response:
Use $.get
from jQuery to add data to head tag. After inital page render.
$.get('./lforms-examples/pages/header-footer/ComponentHeader.html', function(data) {
$('head').append(data);
});
Read more about favicon https://mathiasbynens.be/notes/rel-shortcut-icon