Created
March 5, 2015 16:42
-
-
Save mds/05bc536f2ba41d0b543f to your computer and use it in GitHub Desktop.
A Simple JS Redirect
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> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- Replace with your own title --> | |
<title>Your Project's Title</title> | |
<script> | |
// Add your own shareable dropbox link | |
window.location.replace("https://www.dropbox.com"); | |
</script> | |
</head> | |
<body> | |
<!-- Español not required --> | |
<p>Redirecting you to Dropbox. Un momento, por favor.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment