Most of the META tags listed above need not be used and are optional. Let us see details of each tag and how they can be written and used in your web pages.
The Abstract META Tag is used to provide a brief summary about the web page. This tag can sound like description but it need not be.
Usage Example
<META name="Abstract" content="210 words, 1226 characters with spaces" />
The Author META Tag describes details of the author of the web page. These details can include name and email address of the author. This tag is recommended to use as many search engines use this tag while indexing.
Usage Example
<META name="Author" content="Matt Damon;matt@hollywood.com">
The Copyright META Tag, as the name suggests, specifies the copyright information of the underlying web page. This tag may include any registered trademark names, patents description, etc that is of intellectual property and which is to be publicly disclosed. Most of the times, search engines ignores this tag.
Usage Example
<META name="Copyright" content="Copyright © 2008 Xyz Ltd.">
The Description META Tag is used to provide a short description of the web page. This tag is considered to be a very important tag with respect to search engines. Many search engine spiders use this tag to store the web page description; of course this is coupled with their indexing algorithms. This description can be seen when you see the search results. The recommend content length for this tag is 25 words.
Usage Example
<META name="Description" content="Xyz enterprises brings to you ancient artifacts and rare ancient photos. Browse our collection today and buy artifacts and photos starting at $2.99">
The Distribution META Tag provides classification with regards to distribution of your web page on the World Wide Web. Currently, there are three forms of distribution that can be specified in the content of the distribution tag:
Usage Example
<META name="Distribution" content="Global">
The Expires META Tag declares when a web page is set to expire. The purpose of this tag can be seen both for search engines and browsers. On web browsers, expired pages use a new GET request whenever they are tried to access again rather than a cached version of them being loaded. Search engines on the other hand use this as a directive for them to remove the web page from index. If this tag is used in conjunction with the META Revisit-after tag, search engine crawlers come up after the given interval to re-index the page. The Expires META Tag is particularly good when your web page is updated regularly such as a web page delivering news. It is important that the date and time specified in the content attribute is in accordance with the RFC 1036 format which earlier was RFC 850.
Usage Example
<META HTTP-EQUIV="expires" CONTENT="Mon, 16 Oct 2008 04:21:07 GMT">
The Generator META Tag describes the tool or software that was used to build the underlying web page. This is more of an informative tag although browsers can use it for improving their own functionality.
Usage Example
<META name="Generator" content="FrontPage">
The Keyword META Tag consists of number of keywords that may be used by people to find your web page through search engines. This is also one of the most important tags with regards to on-page SEO and is generally used along with the META Description tag. The keywords specified in this tag must reflect the content of your web page to help search engines rank your pages in an efficient manner.
Usage Example
<META name="Keywords" content="ancient artifacts, ancient photos, cheap ancient photos">
The Language META Tag specifies language used in the web page. This tag is most often used by search engines to determine the language of your web page but can also be used by web browsers. The language specified in this tag should be according with the RFC 1766 standard. EN (for English), JA (for Japanese), RU (for Russian) and IT (for Italian) are just a few examples.
Usage Example
<META HTTP-EQUIV="Content-Language" content="JA">
The Link Relationship META Tag is another very important META tag. The specification of this tag helps both search engines and web browsers. Let’s discover this amazing META tag in detail.
Relations
Usage
<link rel="relation-name" href="actual-link">
For ex: For Stylesheet relation, <link rel="stylesheet" href="doc.css">
The PICS META Tag can help from preventing children accessing the web page. It can be used to specify rating levels. It also helps for other uses like code signing, privacy and management of intellectual property rights.
Usage Example
<META http-equiv="PICS-Label" content='
(PICS-1.1 "http://www.gcf.org/v2.5"
labels on "1994.11.05T08:15-0500"
until "1995.12.31T23:59-0000"
for "http://w3.org/PICS/Overview.html"
ratings (suds 0.5 density 0 color/hue 1))
'>
Reference
http://www.w3.org/PICS/
The Pragma header META Tag prevents page caching and thus each time a page with this attribute is accessed, a request for a new version is made from the web server.
Usage Example
<META http-equiv="pragma" content="no-cache">
The Refresh META Tag is interpreted by web browsers to redirect from the current page to some other location after a given number of seconds. This can be a very useful tag, however many search engines discourage the use of this tag due to the fact that this tag can be manipulated by users to create duplicated or fake content which can create problems to the search engine index. Use of this tag is not recommended, however one can use them on authenticated pages for functionality. Bear in mind that if you are allowing your authenticated pages to be crawled by search engines, using the Refresh META Tag can be lethal.
Usage Example
<META http-equiv="Refresh" content="5;URL=http://www.some+website.com/">
The Reply-to META Tag specifies the concerned person to contact for any issues regarding the underlying web page.
Usage Example
<META name="reply-to" content="me@some+website.com">
The Revisit-After META Tag is useful to let search engine spiders know when they should visit the page for crawling again. This tag is generally useful when you have an idea on how often the content within your web page is updated.
Usage Example
<META name="revisit-after" content="30 days">
The Robots META Tag is solely meant for search engine spiders. They help you to communicate with search engine spiders about your choices on how they should index your web page and the in-page links. You can specify more than one option by separating it with a comma. You can use the following options with the Robots META Tag.
Usage Examples
<META NAME="Robots" CONTENT="NOINDEX, NOFOLLOW">
<META NAME="Robots" CONTENT="NOARCHIVE">


Reader's Comments