Webpage Redirect

The webpage redirect code is used to automatically redirect to another page when your user lands on the page.

<html>
<head>

<title>Page Title</title>

<SCRIPT LANGUAGE="JavaScript">
    redirTime = "0";
    redirURL = "http://www.anotherwebpage.com";
    function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000" onLoad="redirTimer()">
<h2>Page Header</h2>
<a href="http://www.anotherwebpage.com">Click here if you are not redirected.</a>

</body>
</html>

webpage redirect