I have some html pages with the same footer. With javascript and only javascript could i import another html page inside it?
Here's how you could use just javascript to add a footer to your page.
var ajax = new XMLHttpRequest(); ajax.open("GET", "footer.htm", false); ajax.send(); document.body.innerHTML += ajax.responseText;