BIZhub.com

Redirect Surfers to Another Page Redirect Surfers to Another Page       Here are two ways to automatically transfer visitors to another page.
  1. The first method, (and the method I prefer) is by using a meta tag. Yes, meta tags have functions other than marketing. It will look like this:

    <META HTTP-EQUIV=REFRESH CONTENT="10;URL=http://domainname.com/page.htm">

    The number "10" represents the number of seconds before the page will be transferred. Insert the destination address in the designated location.


  2. The second method is javascript. All you have to do is cut and paste the following code:

    <script language="JavaScript"> <!-- var time = null function move() { window.location = 'http://destination.com' } //--> </script> </head> <body onload="timer=setTimeout('move()',5000)">

    Change "http://destination.com" to your destination page. The number "5000" represents the number of milliseconds before the page will be transferred. (1000 milliseconds equals one second). You may change this number to meet your needs.
line

That's all there is to it!
Give it a try!





Home | Web Site Design | Web Site Hosting | Web Site Domains | Web Site Marketing
© 2002, Maknet Corporation