Wednesday, May 26, 2010

SEO Implementation Support Element

In the previous discussion we have considered the supporting elements of SEO. Now it is time we implement these elements on his blog.

The most important element in addition to domain name (the name of the blog) adalan title. Making the title of the blog should be able to summarize each keyword phrase you want. Note the meta title below:

<title>Desired blog title</title> 

Standard templates from blogger platform as shown above. But we can change to the title of the blog can inserted phrases that our blog is more easily searched by google search engine.

Follow the steps below:


1. Please login to your blog account. Then go to the page layout> Edit HTML (for bloggers)

2. Notice the Edit Template field on the page and locate the following HTML tags


<title><data:blog.pageTitle/></title>

On the blog would look like the following picture:


3. Change the following html code with:
<!-- New title -->
<b:if cond='data:blog.pageType == "index"'> 
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pagename/> | <data:blog.title/></title>
</b:if>

On the blog would look like the following picture:



4. Consider again the bold HTML code. Insert a few keywords from the blog as below:

<title><data:blog.pageTitle/></title>| keyword 1 | keyword 2 | keyword 3 </title>



By combining the title or name of the blog and then followed by some keywords that we are included, then the keywords we will be stronger because it is supported by the title.

Another important element which should also be there on every page of a blog to support the SEO is to insert meta keywords and meta description. Code is as follows:

<meta content=' deskripsi blog ' name='description' />

<meta content=' deskripsi blog ' name='keyword' />


In order to more efficiently use meta as below:

<meta expr:content='data:blog.pageTitle + " Type a description of your blog "' name='description />

<meta expr:content='data:blog.pageTitle + "Type a keyword of your blog"' name='keyword />

Just as the meta title, meta could be in second place among <head> dan <head/>

No comments: