5 lines
156 B
JavaScript
5 lines
156 B
JavaScript
|
const startButton = document.querySelector("#startScreen button");
|
||
|
|
||
|
startButton.addEventListener("click", ()=>{
|
||
|
window.location.href = 'index.html';
|
||
|
});
|