HTML Meta
Examples
Document description
Information inside a meta element describes the document.
<html>
<head>
<meta name="author"
content="Adobe Dreamwever ">
<meta name="revised"
content="Adobe Dreamwever 6 ,12/5/2012">
<meta name="generator"
content="Microsoft FrontPage 4.0">
</head>
<body>
<p>
The meta attributes of this document identify the author and the editor software.
</p>
</body>
</html>
Document
keywords
Information inside a meta element describes the document's keywords.
html>
<head>
<meta name="description"
content="HTML examples">
<meta name="keywords"
content="OS, DOS,XML,tutorial,HTML,DHTML,CSS,XSL,XHTML,JavaScript,ASP,ADO,VBScript,DOM,C, C++, accounting, tally,Wings adobe, dreamweaver, photoshop and CORALDRAW">
</head>
<body>
<p>
The meta attributes of this document describe the document and its keywords.
</p>
</body>
</html>
Redirect a user
This example demonstrates how to redirect a user if your site address has
changed.
<html>
<head>
<meta http-equiv="Refresh"
content="5;url=http://http://www.shinetutorial.com">
</head>
<body>
<p>
Sorry! We have moved! The new URL is: <a href="../index.html">http://www.shinetutorial.com</a>
</p>
<p>
You will be redirected to the new address in five seconds.
</p>
<p>
If you see this message for more than 5 seconds, please click on the link above!
</p>
</body>
</html>
The Meta Element
As we explained in the previous chapter, the head element contains general
information (meta-information) about
a document.
HTML also includes a meta element that goes inside the head element. The
purpose of the meta element is to provide meta-information about the document.
Most often the meta element is used to provide information that is relevant
to browsers or search engines like
describing the content of your document.
Note: W3C states that "Some user agents support the use of META to
refresh the current page after a specified number of seconds, with the option of
replacing it by a different URI. Authors should not use this technique to
forward users to different pages, as this makes the page inaccessible to some
users. Instead, automatic page forwarding should be done using server-side
redirects" at http://www.w3.org/TR/html4/struct/global.html#adef-http-equiv.
Keywords for Search Engines
Some search engines on the WWW will use the name and content attributes of
the meta tag to index your pages.
This meta element defines a description of your page:
<meta name="description" content="Free Web tutorials on OS, DOS,XML,tutorial,HTML,DHTML,CSS,XSL,XHTML,JavaScript,ASP,ADO,VBScript,DOM,C, C++, accounting, tally,Wings adobe, dreamweaver, photoshop and CORALDRAW "
/> |
This meta element defines keywords for your page:
<meta name="keywords" content="OS, DOS,XML,tutorial,HTML,DHTML,CSS,XSL,XHTML,JavaScript,ASP,ADO,VBScript,DOM,C, C++, accounting, tally,Wings adobe, dreamweaver, photoshop,CORALDRAW,"
/> |
The intention of the name and content attributes is to describe the content of
a page.
However, since too many webmasters have used meta tags for spamming, like
repeating keywords to give pages a higher ranking, some search engines have stopped using them entirely.
Unknown Meta Attributes
Sometimes you will see meta attributes that are unknown to you like this:
<meta name="security" content="low" /> |
Then you just have to accept that this is something unique to the site or to the
author of the site, and that it has probably no relevance to you.
You can see a complete list of the meta element attributes in our
Complete
HTML 4.01 Tag Reference.
|