G Guest Oct 20, 2004 #1 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????
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 Oct 20, 2004 #2 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
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 Oct 20, 2004 #3 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 Click to expand...
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 Click to expand...
S Steve Easton Oct 20, 2004 #4 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
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 Oct 20, 2004 #5 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
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 Oct 20, 2004 #6 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 Click to expand...
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 Click to expand...