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, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. https://MyAAGrapevines.com
Retired military, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. https://MyAAGrapevines.com
it also has a displayed count down from 10 seconds
Retired military, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA. https://MyAAGrapevines.com