Frequently Asked HTML Questions

How do I redirect a web page?

The following code in the Head of an html document causes browsers accessing the document to redirect to another file:

< META HTTP-EQUIV=Refresh CONTENT="0; URL=http://new_file.htm" >

How do I create a link that opens a new browser window?

Use the target = blank option as in

<a href="http://URL" target=blank>Link Text</a>