Put the following code between the
<head>and
</head> tags of your HTML document:
CODE
<meta http-equiv="refresh" content="10;url=foo.html" />
In the above code,
10 is the number of seconds to wait before redirecting and
foo.html is the page to which the user will be redirected. You can change these to whatever you need it to be. So, your page would look something like this:
CODE
<html>
<head>
<title>Redirection</title>
<meta http-equiv="refresh" content="10;url=foo.html" />
</head>
<body>
<p>You Will Be Redirected in ten seconds</p>
</body>
</html>