-
I have just finished developing an intranet site. However, before the homepage is displayed I want another page to appear for approx 10 seconds and then disappear.
I want this to happen automatically so that I don't have to click on the first page to get to my homepage.
How can I achieve this ?
-
put this in your front page header
Code:
<meta http-equiv="Refresh" content="10; URL=MyHomePage.html">
the CONTENT is the number of seconds to wait before navigating to the URL
-
That's Excellent. Thanks for your help Clunietp !
nmretd.
-