Redirecting with HTTP-EQUIV Refresh
The "Refresh" HTTP-EQUIV meta-tag allows you to specify a timeout and a new page to load once that timeout has expired. To use it add the following to the HTML of the page line between the <HEAD> and </HEAD> sections:
<META http-equiv="refresh" content="5; URL=http://www.expiry.com">Note:
The timeout (shown here as 5) is in seconds.
Be sure to change the URL to that of the desired page.
Insert double quotes exactly as shown.