Auto change page

G

Guest

If you have an intro page, (index.htm) then after 15secs you would like to
redirect user to say page 2

how do you do it????
 
S

Steve Easton

With a meta refresh tag between the head tags.

<META HTTP-EQUIV=Refresh CONTENT="15; URL=page2.htm">

will open page2.htm in 15 seconds.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
G

Guest

in any order between top and bottom head tags

Steve Easton said:
With a meta refresh tag between the head tags.

<META HTTP-EQUIV=Refresh CONTENT="15; URL=page2.htm">

will open page2.htm in 15 seconds.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
S

Steve Easton

As long as it is between the <head> </head> tags.
I usually have the title tag as the top one though.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
D

DI

Copy the following into the head of your document.

<meta http-equiv="refresh" content="6; url=http://www.abc.com/">

the 6 is the time in seconds before the browser forwards the user

replace www.abc.com with the URL you want it to redirect to

Also good idea to add a manual link and text - this page has moved
 
G

Guest

Thanks to All....

DI said:
Copy the following into the head of your document.

<meta http-equiv="refresh" content="6; url=http://www.abc.com/">

the 6 is the time in seconds before the browser forwards the user

replace www.abc.com with the URL you want it to redirect to

Also good idea to add a manual link and text - this page has moved
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top