This section is for posting questions which are not directly related to WYSIWYG Web Builder.
Examples of off topics: web server configuration, hosting, programming related questions, third party scripts.
Note that these questions will generally not be answered by the administrators of this forum.
<!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>
Retired military with Airborne, Air Assault, and Flight Wings. Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. Avatar created by AI. https://MyAAGrapevines.com https://CenterCityBBS.Com (Grupo Chat, & Forum)
Retired military with Airborne, Air Assault, and Flight Wings. Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. Avatar created by AI. https://MyAAGrapevines.com https://CenterCityBBS.Com (Grupo Chat, & Forum)
it also has a displayed count down from 10 seconds
Retired military with Airborne, Air Assault, and Flight Wings. Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. Avatar created by AI. https://MyAAGrapevines.com https://CenterCityBBS.Com (Grupo Chat, & Forum)