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
Expiration
309
Expiration Meta Tag
Description
The expiration meta tag allows you to set a date at which time your web page will expire, which at that time will remove your web page from search engine databases.
The expiration meta tag looks like
<META name="expires" content="XXX">
XXX is replaced with the date of expiration. The date must be in RFC1123 format, shown in the example below.
Code
<HEAD>
<META name="expires" content="Sat, 01 Jan 2000 24:00:00 GMT">
</HEAD>
Output
n/a
Practice
<HEAD> <META name="expires" content="Sat, 01 Jan 2000 24:00:00 GMT"> </HEAD>
Advertisements