Web Page Redirecting HTML
The Following HTML code represents a typical layout for page forwarding
where you are moving a website and want to notify the visitor reaching your
old website to provide both a forwarding new URL and an automatic page
redirect feature, and the timing timed by the webmaster.  Make the forwarding
page the default page of your old site.   Here's a sample:

<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage x.x">
<meta HTTP-EQUIV="REFRESH" CONTENT="12; URL= http://www.blahblah.com/default.html">
<title>OLD ISBE HOMEPAGE FORWARDING</title>
</head>
<body bgcolor="#FFFFFF" background="image.jpg">
<p>&nbsp;</p>
<table border="0" width="100%">
<tr>
<td width="8%"></td>
<td width="92%">&nbsp;<p>THIS WEB SITE HAS MOVED:</p>
<p>The new URL is:&nbsp; <a href="http://www.newblahblah.com">http://www.newblahblah.com/</a></p>
<p>Please set your bookmarks to the new address.
<p>You will be automatically forwarded to the new address in 12 seconds. 
       If you are not forwarded, simply click on the URL.
</td>
</tr>
</table>
</body>
</html>

Back To WebTools Page