diff --git a/index.html b/index.html
index 4e2e1be..e600a6d 100644
--- a/index.html
+++ b/index.html
@@ -152,14 +152,14 @@
Data Portals
// Function to include the HTML content
function includeHTML() {
// Include the header
- fetch('/header.html')
+ fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
// Include the footer
- fetch('/footer.html')
+ fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;