A Template HTML5 redirect page <html> <head> <title>Page Title</title> <meta http-equiv="Refresh" content="0; url=target.html"> <!-- If the meta tag doesn't work, try JavaScript to redirect. --> <script type="text/javascript"> window.location.href = "target.html" </script> </head> <body> <!-- If JavaScript doesn't work, give a link to click on to redirect. --> <p> If you are not redirected automatically, click <a href="target.html">here</a>. </p> </body> </html> Tags: html, coding Please enable JavaScript to view the comments powered by Disqus.