What is Meta Tags? What is the usage of Meta Tag?
In HTML coding meta tag is code which provides metadata about a webpage. Website’s visitor won’t see meta tag until he view your source code. So you might be thinking what is the use of puting meta tag in webpage, to let you know in briefly the meta tag is used by search engines to allow them to crawl your website more accurately to list your website in
its index.
First of all you need to know where should you put your meta tags?
- Well, Meta tags are placed between <head> </head> section of your webpage.
- Example syntax: <head> <meta tags> </head>
What should I put in my meta tags?
<META NAME=”keywords” CONTENT=”car, cars, world cars”>
- Put your unique keywords which you want to target for seo thing here, You can seperate multiple keywords using comma.
<META NAME=”description” CONTENT=”Brief description of your website”>
- Put brief description of your website to let seach engine know what is your website all about.
<META NAME=”author” CONTENT=”Name Of The Author”>
- This meta tag will display who is the author of the document that is being viewed. If you use the Meta Author tag, it is recommended to use it with the author’s first and last name.
<META NAME=”reply-to” CONTENT=”email@address.com”>
- This meta tag is used to harvest email addresses. Highly recommanded not to use this tag to stay away from spammers.
<META NAME=”copyright” CONTENT=”Copyright 2009″>
- This meta tag is used to include the copy right, trademark, patent.
<META NAME=”distribution” CONTENT=”Global”>
- This meta tag is used to declare, how do you want to distribute content of your website. There are three options
* Global (the entire web). It is recommended to use.
* Local (reserved for the local IP block of your site)
* IU (Internal Use, not for public distribution).
<META HTTP-EQUIV=”Content-Language” CONTENT=”en-us”>
- This meta tag declares language used on website.
<META HTTP-EQUIV=”pragma” CONTENT=”No-Cache”>
- This tag is used to prevent visitors from seeing a cached version of a specific page. The Meta Pragma No Cache tag forces the browser to pull information from the server each time the page is viewed.
<META NAME=”classification” CONTENT=”Music”>
- Classify your content category. for example, if you have some music’s website put music as classification tag.

Recent Comments