| Page Redirect - Automatic
<HEAD>
<META HTTP-EQUIV=REFRESH CONTENT=5>
</HEAD>
reloads the document itself
++++++++++++++++++++++++++++++
<HEAD>
<META HTTP-EQUIV=REFRESH CONTENT="5;URL=http://the-new-domain/the-new-page/">
</HEAD>
takes visitor to another page
++++++++++++++++++++++++++++++
Javascript Version
<!--place in head section-->
<head>
<title>Auto Reload</title>
<script language="JavaScript">
<!--
var time = null
function move() {
window.location = 'http://yoursite.com'
}
//-->
</script>
</head>
<!--end head section-->
<!--place in body section-->
<body onload="timer=setTimeout('move()',3000)">
<p>see this page refresh itself in 3 secs.
</body>
<!--end body section-->
|