Title Meta Tag
Title meta tag refers to the name of your website. It appears in the reverse bar of the browser. Title of your web site can be seen in the search results. Title meta tag format is as follows:
<meta content="<title>Your web site name</title>" name="title"/>
Description Meta Tag
Description meta tag refers to the actual target of your website. Your websitesite description can be seen in the search results as well. Description meta tag format is as follows:
<meta content="Your web site description." name="description"/>
Keywords Meta Tag
Keywords meta tag is less important in case of popular Google search engine. However, keywords as a meta tag is followed by SEO process to index your web pages. Keywords meta tag refers to the descriptive terms of your website contents. Keywords meta tag format is as follows:
<meta content="internet, website, blog" name="keywords"/>
Robots Meta Tag
Robots meta tag allows search engine robot (e.g. Google Bot) to crawl web pages starting from index page of your website and continuing with the rest of the web pages. Robots meta tag format is as follows:
<meta content="all, index, follow" name="robots"/>
However, in case of a particular page should not be indexed by a search engine then the robots meta tag format will be as follows:
<meta content="none, noindex, nofollow" name="robots"/>
Meta tags must be placed in between HTML HEAD tag e.g.
<head>Meta tags go here</head>
A sample implementation of meta tags is as follows:
<head>
<meta content="<title>Salahuddin Ahmed's Blog</title>" name="title"/>
<meta content="It is all about C#.NET, ASP.NET, ADO.NET, SQL Server, Crystal Report, HTML, JavaScript, XML, AJAX, CSS, and Flash."name="description"/>
<meta content="C#.NET, ASP.NET, ADO.NET, SQL Server, Crystal Report, HTML, JavaScript, XML, AJAX, CSS, Flash" name="keywords"/>
<meta content="all, index, follow" name="robots"/>
</head>
<meta content="<title>Salahuddin Ahmed's Blog</title>" name="title"/>
<meta content="It is all about C#.NET, ASP.NET, ADO.NET, SQL Server, Crystal Report, HTML, JavaScript, XML, AJAX, CSS, and Flash."name="description"/>
<meta content="C#.NET, ASP.NET, ADO.NET, SQL Server, Crystal Report, HTML, JavaScript, XML, AJAX, CSS, Flash" name="keywords"/>
<meta content="all, index, follow" name="robots"/>
</head>
That’s it.

No comments:
Post a Comment