diff --git a/script.js b/script.js index f081be8..32f4675 100644 --- a/script.js +++ b/script.js @@ -23,7 +23,7 @@ function getCookie(cname) { async function init() { var cont = document.getElementById("content"); - let data = await fetch("git.html"); + let data = await fetch("main.html"); let text = await data.text(); cont.innerHTML = text; };