Created
April 14, 2023 09:13
-
-
Save Korveld/b2096937b6b7eecad3ccbd95171c2674 to your computer and use it in GitHub Desktop.
Html redirection
This file contains hidden or 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> | |
<head> | |
<meta http-equiv="refresh" content="0; url='URL_TO_REDIRECT'" /> | |
<script type="text/javascript"> | |
window.location.href = "URL_TO_REDIRECT" | |
</script> | |
</head> | |
<body> | |
<p>You will be redirected to URL_TO_REDIRECT soon!</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment