Onpage SEO tips tricks #1: create attributes and elements of SEO Friendly Websites

Maybe in other blogs you've ever read about onpage SEO tips tricks. However, earlier I emphasize here, that there are some things below that do not exist in other blogs. Yaa, by reading this article, I guarantee there are some new things you will know.

This post is the first part of the series of articles on SEO onpage which will explain how to optimize the page attributes and elements of your site so that the search engine crawlers is easy to explore and read it. If the crawler can easily explore and read your site, you will get a good value in the eyes of the search engines. As a result, will improve your SERP although only a few percent only.

Before any further, if you do not understand what is onpage SEO, please read about the sense here.

Well, here are some tips and tricks to optimize your page/homepage of your blog for SEO Friendly:

1. Title Your Blog/Website SEO Friendly
The first thing that you should consider before going to the other SEO techniques is a keoptimalan title. This is because the title represents the name of the page of your site in search engines. First and most importantly, the title of your blog should match the content of your blog. However, that alone is not enough. You should also include a tagline and your main keyword in the title. An example is this blog's main: Syakirurohman and its tagline: Tips for blogs and Web technologies. To set it up is by modifying the tag<title>the html code of your site. Of course, every kind of different sites. However, here I give an example of how to set the title on the blog-based Blogger/blogspot.

Sign in to Edit HTML pages with the Dashboard Template > > EDIT html. Then, find the code below (search by clicking CTRL + F):
<b:if cond="’data:blog.url" =="data:blog.homepageUrl’">
<title><data:blog.title></data:blog.title></title>
<b:else></b:else>
<title><data:blog.pageName></data:blog.pageName></title>
</b:if>
The code on your blog may not be exactly the same as the above code. But at its core is the same, namely to setting tags<title>. Make sure that the code between the tags<head>and</head>.

Then, modify the above code to:
<b:if cond="’data:blog.url" =="data:blog.homepageUrl’">
<title><data:blog.title></data:blog.title>| The tagline of your Blog</title>
<b:else></b:else>
<title><data:blog.pageName></data:blog.pageName>|<data:blog.title></data:blog.title></title>
</b:if>
The intent of the above code is:
If the url is the url of the blog homepage (main page), then a title patterned his "Blog title | The Blog Tagline ". If not, then titlenya patterned "page name/post | The Title Of The Blog ".

Well, the second title in the above pattern is a pattern that is SEO Friendly.</title></title>

2. Meta Description that fits Optimal &
Meta description or Meta Description is a description of the site that will be read and displayed by search engines in the search results. Meta description should correspond to the content of the blog. Same is the case with the tittle, the meta description should also contain main keyword in your blog. You should be able to describe your blog sepadat and shortest possible. The range of a good meta description length is approximately 150 – 200 characters. The meta description of a blog/website set up in a tag <meta> that is placed in between the tags<head></head>with attributes such as below:

<meta name="”description”" content="”Meta" deskripsi="" situs="" anda”/="">

For how to set the meta description further, God willing I will discuss another time because if discussed here would be too long.

3. Suitability of keywords and Avoid Keyword Stuffing
Just like the meta description, keywords also serve to describe your site. It's just that, in the form of partial words that are commonly used in the content of your website. Although Google now no longer ignore the keyword as a parameter the SERP, but several other search engines still consider it. So, the keywords should still remain unnoticed.

A good blog keyword is the match with the content of the blog and it is being said that is often used. Avoid keyword stuffing or also the repetition of keywords intended to trick the search engines. A good number of keywords range anywhere between 5 – 10 words only perhalaman websites.

A web keyword set in the tag
<meta> in between<head>and</head>with attributes such as below:<meta name="”keywords”" content="”katakunci1," katakunci2,="" …,="" katakunci10″/="">

4. Setting A Good Heading Tags (H1, H2, H3, H4, H5, H6)
Heading tag is an html tag that is used to create a headline on the website. Heading tag has an important role to optimize our site SEO. This is because the search engines will mengutamakannya because it is considered as an important thing on the blog. H1 is the level of importance of heading higher from other heading tags. While the H6 is the opposite. Setting a good headings will help search engines prioritize content on our blog. In General, the use of headings in the blog are as follows
<H1>< h1=""> :
For your blog title.
<H2>< h2=""> : For the title of the widget.
<H3>< h3=""> : To the post title.
<H4>< h4=""> :
Important to quote in the article, the title of another that has a smaller scale on the blog.
<H5>< h5=""> –<H6>< h6="">
rarely used:

However, I personally am okay using H1 for post titles because according to my post title is crucial on the blog. And this indeed has been tested, leading to a search engine.

5. The Structure Of The Code Above Should Be Blog Content Or Earlier
Every page of your website/blog is composed by the HTML codes. So, of course the structure of the html code of a page of the site also affect SEO. This is because the search engine crawler robot reading a web page via htmlnya. Getting up or getting the initial layout of the html code, then the robot crawlers will judge it as an important part of the page so it is prioritized. Therefore, we must put the html codes important part in our blogs at the top. And of course an important part of any blog is the content/article. Therefore, the structure of the code articles/posts must be earlier/above in order to be SEO Friendly.

However, there are some bloggers who said that the position of the content on the page SEO friendly blogs that are on the left side, with the sidebar on the right side. actually this is a misconception, because the position left or right of the content on the blog page can be manipulated by the CSS code. This might be due to misunderstanding the code content that is located on the left are generally located at the beginning of the html code. But, again, this can be manipulated with CSS code.

For more details, below I present 3 structure frequently used html code:</H6></H5></H4></H3></H2></H1>

A. Blog with 2 column Templates With Sidebar on the right:<html>
<head>
<title>blog title< title="">
</title></head>
<body>
<div>This is the header code</div>
<div>This is the code Content</div>
<div>This is the code right sidebar</div>
<div>This is the footer code</div>
</body>
</html>B. Blog with 2 column templates with Sidebar on the left:<html>
<head>
<title>Blog Title</title>
</head>
<body>
<div>This is the header code</div>
<div>This is the code to the left sidebar</div>
<div>This is the code Content</div>
<div>This is the footer code</div>
</body>
</html>C. Blog Template with 3 columns:<html>
<head><title>Blog Title</title>
</head>
<body>
<div>This is the header code</div>
<div>This is the code to the left sidebar</div>
<div>This is the code Content</div>
<div>This is the code right sidebar</div>
<div>This is the footer code</div>
</body>
</html>Well, which is the best? Option a. yaa! option A is the structure of the html code that is best because of the above content code after the header. And then, what about B and C?. If the HTML structure of Your blog such as B and C, you can move the content to the top of the code (below the header code). Well, what about overlay on a blog?. Easy. Living manipulating with css code so that the position of the content on the blog page does not change.

6. the Dofollow Link Ditiap Page no more than 100 Links
One thing that you should consider for SEO your blog is the number of links (especially the dofollow) on every page of the blog. Whether it is a link to another page in your blog (internal link) or a link to another blog (external link). The number of dofollow link in a page of sites that either should not be more than 100 links. The number of links are dofollow too much will complicate the search engine crawlers because ' told ' to follow him (his mencrawl too). This is not good for our performasi in the eyes of the search engines.
To find out the number of dofollow link in our blog/site, you can use a free browser extension-extension you can download easily (next time I will write about it).

7. making Light Blog pages & fast Loading
In this modern era that increasingly, search engines are getting to know the needs of its users. Well, one of the needs of its users is the loading speed of a page of the site. Therefore, whether or not a Web page light greatly affect SEO. The more light a page is loaded, it will be the better. Therefore, ringankanlah the speed of your website by removing the elements that are not important, compress css code, javascript or html and so on.

Well, that's 7 points important to optimize SEO onpage your blog through attributes and elements of your website. If you have any questions, don't hesitate to question them in the comments field below. Lastly, don't forget to subscribe to this blog to receive information updates the article it goes!.
Hopefully useful & happy blogging.

Related Post:


Facebook Comments
0 Blogger Comments


Posting Komentar - Back to Content


Banner 88x31

Join,Like,Follow Us

Label

Site Info

Banner & Link Teman

Music

Diberdayakan oleh Blogger.

Cari Blog Ini

Partners