I know how to make a web page redirects to another web page in x seconds.
Now there's another question stuck in my head. How to make the web page redirect after the page is loaded?
I know how to make a web page redirects to another web page in x seconds.
Now there's another question stuck in my head. How to make the web page redirect after the page is loaded?
did you want the page to redirect the second it got to the page or do you want the user to click somthing first?
I know how to make a web page redirects to another web page in x seconds.
Now there's another question stuck in my head. How to make the web page redirect after the page is loaded?
This is not css related, it can be done with javascript:
[html]
<body onload="location.href='http://www.thescripts.com'">
[/html]