Well, I'm really not good at this since I'm teaching myself. And isn't it a little off-topic?

Offline
<META HTTP-EQUIV="Refresh"
CONTENT="5; URL=html-redirect.html">
Try searching on google next time.
Offline
<script type="text/javascript"><!--
setTimeout('Redirect()',4000);
function Redirect()
{
location.href = 'blahblahblah.html';
}
// --></script>That script will wait four seconds then redirect you to 'blahblahblah.html', a page which I completely made up myself
the setTimeout('Redirect()',4000) means to wait 4000 milliseconds (aka four seconds) and then do the redirect function.
The redirect function then sets the URL to '../blahblahblah.html'.
Change it to meet your needs.
Offline
archmage wrote:
<META HTTP-EQUIV="Refresh"
CONTENT="5; URL=html-redirect.html">
Try searching on google next time.
did. didn't help
Offline