Ändern Sie die URL mit JavaScript nach 5 Sekunden

window.setTimeout(function(){
    window.location.href = "https://www.google.co.in";
}, 5000);
Haribo27