| |
| Meta tags And SEO |
|
| In this article we are going to know about Meta tags, where they appear in your web page, and importance of these tags in process. |
| Here is some information about meta tags |
- Meta tags are hidden tags
- They appear in head <head> tag of your webpage
- Meta tags don’t need end tag.
- The meta tags has three possible attributes
- The meta tag has three possible attributes content, http-equiv and third one is name.
- Meta tags always provide information in a name/value pair. Then a mean http-equiv attributes provide the name information and the content provides the value information.
|
Meta tags are the tags which provide additional information of your webpage to search engines so we cant ignore them if we are talking about . |
Now we are going to know some detailed information about the possible attributes of meta tags. |
|
| Content |
|
The attributes “content” provides the value information in the “name” it can be any valid string
Information appears in “quotes” here I give example for that. |
| <meta content= ”MarketRaise Corp. offers a multitude of Internet based technologies such as Web Design, Content Creation, Hosting, Software Development, Ecommerce Solutions, Web Marketing, Ad Space Brokering, Lead generation, IT Outsourcing, Analytic Reporting and Consulting.”/> |
|
| Name |
|
| The attributes name give you authority that you can use any name that you would like or that might be useful to you. Some common names are keywords, description, author, robots and copyright. |
| Here I give some example that explains what I want to say. |
keywords - words that identify what the page is about, usually used in |
| <meta name="keywords" content="HTML Software Development, Ecommerce Solutions, Web Marketing, Ad Space Brokering, Lead generation, IT Outsourcing,"> |
description - a short description of the page |
| <meta name="description" content="Boost your marketing strategy with meta tags"> |
| * author - the author's name and possibly email address |
| <meta name="author" content="cronis"> |
| * robots - to allow or disallow indexing by robots |
| <meta name="robots" content="no index"> |
| * copyright - the copyright date of the page |
| <meta name="copyright" content="August 1999"> |
|
| http-equiv |
|
| This attribute is also a name for the name/value pair, but it is used by the server to include that name/value pair in the MIME document header passed to the Web browser before sending the actual HTML document. Some common http-equiv types are: |
| * charset - defines the character set used in the page |
| <meta http-equiv="charset" content="iso-8859-1"> |
| * expires - when the document will be out of date |
| <meta http-equiv="expires" content="22 april 2008"> |
| * refresh - sets the number of seconds to reload the page or reload to a new page |
| Reload the page every 10 seconds: |
| <meta http-equiv="refresh" content="10"> |
| Reload to a new page after 10 seconds: |
| <meta http-equiv="refresh" content="10;url=http://webdesign.about.com/"> |
| In this article I explain about if you want to know about meta tags and relation between seo then read the second part of this article. |
| |
| |