Infolink

 

Search This Blog

Showing posts with label KEYWORDS. Show all posts
Showing posts with label KEYWORDS. Show all posts

Dec 19, 2012

How to Add Meta Description and Keywords to Blogger:

How to Add Meta Description and Keywords to Blogger:
  •     Login to your blogger blog
  •     Goto Design and after that Edit Html
  •     Add the following code
<meta content=’your description here’ name=’description’/>

<meta content=’your keywords here’ name=’keywords’/>


Click Save Template. Now you added meta tags to your blogger blog. The description and keywords will be showed on every posts.

How to Add Unique Meta Description and Keywords to Blogger:

Just Change the code like this :-
Add Meta Description:

<meta expr:content=’data:blog.pageName + data:blog.title + data:blog.pageName’ name=’Description’/>

The above code will add your Blog post’s title and Blog title as your Meta description of blog posts.
Add Meta Keywords:

<meta expr:content=’data:blog.pageName + data:blog.title + data:blog.pageName’ name=’Keywords’/>

The above code will add your Blog post’s title and Blog title as your post’s Meta Keywords.

The unique meta description / keywords / tags for blogger blog should improve your blog post’s search engine rankings. But, keep in mind don’t add many title tag in your meta description. Because, this may be  irritate your post.

Nov 10, 2012

KEYWORDS,IDENTIFIERS and DATA TYPES in C#.Net

Introduction

KEYWORDS :
Keywords are the words which are language specific. A keyword is an essential part of a language definition. These words cannot be used as identifiers. Identifiers are nothing but names given to various entities used in a program. The examples of keywords are event, byte, break, using, class..etc

IDENTIFIERS :
Identifiers are program-defined tokens. Identifiers are names of various program elements like classes, methods, variables, namespaces, interfaces...etc. in the code that uniquely identify an element. Now let us see what these entities are.
Related Posts Plugin for WordPress, Blogger...