How can i create html automatic change page? [duplicate]

Javascript’s setTimeout method will execute code after a delay. On Page B:

setTimeout(function(){window.location='page-C.html';},2000);

Leave a Comment