// script.js document.addEventListener("DOMContentLoaded", function() { fetch("navigation.html") .then(response => response.text()) .then(data => { document.getElementById("navbar-placeholder").innerHTML = data; }); fetch("footer.html") .then(response => response.text()) .then(data => { document.getElementById("footer-placeholder").innerHTML = data; }); });