Meta Refresh to Redirect
Easy way of using the meta refresh tag to redirect users
This recipe describes the meta refresh technique of redirecting users. By placing this tag in your head section of your html file, the user will be directed to another page after a set number of seconds.
<meta http-equiv="refresh" content="10; URL=http://www.tech-recipes.com">
By placing this code in the head of your page, visitors will be directed to tech-recipes after 10 secs. 0 secs will try to transfer the visitors as soon as possible.
Just change the url above and bounce your visitors to the correct page.
Also see ...
HTML Printing: Use a Style Sheet to Force a Page Break
H3Designing web pages for printing can be difficult. Here's how to force a printer to insert a page break./H3PDesigning web pages that can be easily printed can be very, very difficult. PDFs are perfect, but expensive to do dynamically. Anyway, here is a cheap way to insert a page break int
H3Designing web pages for printing can be difficult. Here's how to force a printer to insert a page break./H3PDesigning web pages that can be easily printed can be very, very difficult. PDFs are perfect, but expensive to do dynamically. Anyway, here is a cheap way to insert a page break int
