StartScreen erstellt

This commit is contained in:
pbg2h23akl
2024-07-02 10:19:26 +02:00
parent a3d1d1bc5b
commit 6a8109cc34
3 changed files with 77 additions and 0 deletions

5
js/startjs.js Normal file
View File

@@ -0,0 +1,5 @@
const startButton = document.querySelector("#startScreen button");
startButton.addEventListener("click", ()=>{
window.location.href = 'index.html';
});