At ReWritables, you'll find hundreds of free resources including Java Scripts, HTML Tips and tricks and more. 
Our Free banner gallery has hundreds of free images.  Need custom animation, graphics design or web site 
graphics?  We'll be glad to help!

 

 

HTML Tip

Redirect Users to another Page

 

Sometimes you need to redirect the user from one page to another. 
For example when a page has moved. You can do this automatically 
with the META element, using http-equiv="refresh"

You must put this element in the HEAD of the page.  
This tells the client it must refresh the page after a number of seconds. 
The number of seconds and the URL of the new page must be present in the CONTENT attribute .

<META http-equiv="refresh" content="10; url=New-page.html">

 

 

Back to HTML Tips