Skip to content

Instantly share code, notes, and snippets.

@naganowl
Created April 4, 2014 18:40
Show Gist options
  • Save naganowl/9980714 to your computer and use it in GitHub Desktop.
Save naganowl/9980714 to your computer and use it in GitHub Desktop.
Simple page that redirects and provides link to do so.
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="10;url=//github.com/naganowl">
<script type="text/javascript">
setTimeout(function(){
window.location.href = "//github.com/naganowl";
}, 10000);
</script>
<title>Page Redirect</title>
</head>
<body>
<a href='//github.com/naganowl'>Link</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment