home page transition

S

sharon

I want to create a home page that comes up with the title
of the website and then automatically goes into the first
menu page of the site (without having to have an enter
site button)

Any help would be appreciated please so I can impress my
husband with my skills
 
S

Steve Easton

Create the "entry" page you want as the index.htm
or "home" ( also called default ) page.

Paste the following between the head tags ( in html view )
META HTTP-EQUIV=Refresh CONTENT="10;
URL=http://www.yoursite.com/nextpage.htm">

This loads nextpage.htm in 10 seconds
Change yoursite.com to your domain name.
Change nextpage.htm to the name of the second
page you want to display.
Change "10" to the number of seconds you want to
wait before "nextpage" loads.

hth
 
M

MD WebsUnlimited.com

Alternatively,

In the Htmal locate the body tag <body> and add the following:

<body onload="setInterval('window.location=\'enterkey.htm\'',5000);" >
 
Top