HTML Code to forward from one page to the nextpage.html
Posted: Thu Jun 13, 2024 3:43 pm
Code to count down from 10, and then go to another page called "Nextpage.html"
Code: Select all
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="10;url=nextpage.html">
<style>
body {
text-align: center;
}
</style>
</head>
<body>
<h1>Redirecting to next page in <span id="countdown">10</span> seconds...</h1>
<script>
var countdown = 10;
var timer = setInterval(function() {
countdown--;
document.getElementById('countdown').textContent = countdown;
if (countdown <= 0) {
clearInterval(timer);
}
}, 1000);
</script>
</body>
</html>