469 shaares
https://www.tutorialspoint.com/How-to-use-JavaScript-to-redirect-a-webpage-after-5-seconds
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bytefreaks.net Redirect Page</title>
<meta name="description" content="A page that will redirect the user to bytefreaks.net after 5 seconds">
<meta name="author" content="Bytefreaks.net">
<meta http-equiv="refresh" content="5;URL=http://www.bytefreaks.net/">
</head>
<body bgcolor="#ffffff">
<center>You will be automatically redirected to <a href="http://bytefreaks.net">bytefreaks.net</a> as this resource is not available.</center>
</body>
</html>