Last active
June 10, 2020 15:34
-
-
Save johanoloflindberg/888beb01de841bf9b46b439f6f998c3c to your computer and use it in GitHub Desktop.
Redirect Page (5 sekunder)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>WEBBAB 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=https://webbab.se/"> | |
</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> | |
/* https://bytefreaks.net/howtos/create-an-html-page-with-no-javascript-that-will-redirect-the-user-after-a-few-seconds */ | |
/* https://www.siteground.com/kb/php_and_html_redirects/ */ | |
/* https://www.tutorialspoint.com/How-to-use-JavaScript-to-redirect-a-webpage-after-5-seconds */ | |
/* https://www.bitdegree.org/learn/html-redirect */ | |
/* https://www.itsolutionstuff.com/post/jquery-redirect-to-another-page-after-5-seconds-exampleexample.html */ | |
/* https://www.invezzatechnologies.com/javascript-redirect/ */ | |
/* https://makitweb.com/page-redirect-after-specified-time-with-javascript/ */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment