ARCHIVED: How can I make my web page automatically go to a different page after a certain amount of time?
To automatically forward a web page to a different page,
you can place a <meta> tag in the header (i.e., between the
<head> and </head> tags) of your web page. Use the
following syntax:
<meta http-equiv="refresh"
content="10;url=http://node.domain.env/~username/url.html">
After content=, enter a number in seconds that you want
the browser to wait before opening a different page (e.g.,
10 is used above). After url=, enter the
complete URL for the page you are forwarding to.
Note: Some browsers, especially older ones, do not support the <meta> tag.
Last modified on November 10, 2009.







