rtic/redirect.html

17 lines
558 B
HTML
Raw Normal View History

2019-02-14 21:57:43 +01:00
<!DOCTYPE HTML>
<!-- Credit goes to https://stackoverflow.com/a/5411601 -->
<html lang="en-US">
<head>
<meta charset="UTF-8">
2019-09-15 21:40:40 +02:00
<meta http-equiv="refresh" content="0; url=URL">
2019-02-14 21:57:43 +01:00
<script type="text/javascript">
2019-09-15 21:40:40 +02:00
window.location.href = "URL"
2019-02-14 21:57:43 +01:00
</script>
<title>Page Redirection</title>
</head>
<body>
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
2019-09-15 21:40:40 +02:00
If you are not redirected automatically, follow this <a href='URL'>link</a>.
2019-02-14 21:57:43 +01:00
</body>
</html>