Your Guide to Professional
Web Site Design and Development

HTML Tips
HTML Codes
Web Development
Web Design Tips
JavaScript Codes
216 Web Safe Colors
CSS Tutorial
JavaScript Tutorial
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design TipsJavascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Redirect Visitors to a New Web Page

If you would like to redirect your visitors to a new web page, this code will enable you to do just that.

Meta tags are used to give detailed instructions in regard to a web page to the Search Engines and browsers.

You can automatically redirect your visitors to another web page by adding the following META tag between the <HEAD> and </HEAD> tags of your HTML.

<META HTTP-EQUIV="Refresh" CONTENT="4;URL=http://www.yourdomain.com/">

The CONTENT attribute tells the browser to redirect the visitor to the URL you specify in 4 seconds. This can be changed to whatever you'd like.

If you move your web site to a new location, this tag provides a great way to automatically redirect your visitors.

 More Web Design Tips