6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
fetch("../components/html/header-composant.html")
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById("header-placeholder").innerHTML = data;
|
|
});
|