HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
About Meta Tags
Abstract
Author
Copyright
Description
Distribution
Expiration
Generator
Keywords
Language
Refresh Redirect
Revisit
Robots
Refresh Redirect
304
Refresh or Redirect
Description
The refresh/redirect meta tag is different from other meta tags in that it does not give search engines any information. Instead, its purpose is to redirect the visitor to a new web site after a certain amount of time.
The refresh/redirect meta tag looks like
<META HTTP-EQUIV="refresh" content="X;URL=internet_address">
X is replaced with the number of seconds you want the page to display until it goes to the new URL. Internet_address is replaced with the URL of the web site you want to link to.
Code
<HEAD>
<META HTTP-EQUIV="refresh" content="5;URL=http://www.activejump.com">
</HEAD>
Output
n/a
Practice
<HEAD> <META HTTP-EQUIV="refresh" content="5;URL=http://www.activejump.com"> </HEAD>
Advertisements