often you will click on one html address like
sin
instead of being sent to the sin url you end up at another url like
rubbish about god
Or the sin will be displayed for a few seconds with something that says
we have become superstitios doults and our new address is i rubbish about god
and then after a few seconds you are automaticlly redirected to the new site.

i think i have found how to do the that code and ill test it here.

i beleive this magic is done with the

<head> <meta http-equiv="refresh" content="n;url=url" > </head>

the

http-equiv="refresh"
is required. I dont know what it means but you must have it.

the

content="n;url=url"

Now lets try some examples

  1. refresh0.html the meta tag in refresh0.html looks like this
    <meta http-equiv="refresh" content="0;url=http://www.oocities.org/dr_ray_price">
    because 0 was specified for the time i think the refresh0.html page will be displayed for ZERO seconds, which is the same as saying the refresh0.html page WILL NOT BE DISPLAYED. Instead the the browser will display the page www.oocities.org/dr_ray_price because the
    url=http://www.oocities.org/dr_ray_price
    in the meta tag redirects it there.
  2. refresh1.html
  3. refresh20.html the meta tag in refresh20.html looks like this
    <meta http-equiv="refresh" content="20;url=happydogmeat.html">
    the 20 will cause the browser to display the page
    refresh20.html
    for 20 seconds. after the 20 seconds the browser will then display the page
    happydogmeat.html