How to make your blog more SEO friendly
This tutorial i will show you how to make your blog more SEO friendly, This is fundamental for each blog or site in the event that you need it to have higher position and crept effectively via web search tools.
1. Make all the external links open in new tab
This will reduce your bounce rate, increase the no. of page views on your blog and your blog traffic will not be transferred just because of one single link.
This will reduce your bounce rate, increase the no. of page views on your blog and your blog traffic will not be transferred just because of one single link.
2. Make all the external links no follow
Of course all connections are dofollow that implies Google can slither them and thus a great part of the Page Rank juice of the page leaves. So as to avoid them one should add nofollow tag to every outer connection.
Of course all connections are dofollow that implies Google can slither them and thus a great part of the Page Rank juice of the page leaves. So as to avoid them one should add nofollow tag to every outer connection.
3. Adding alt labels to all pictures
Alt tag in a picture portrays it and through it web indexes like Google Images demonstrate you writes picture on related question or query. This gets more guests to your blog and enhance SEO enormously.
So the question comes how to do all these things ? Manually doing this will take hell lot of time and it would nearly impossible for blogs with huge number of posts for manually doing this task. So in order to save your effort a JavaScript code is already coded.
The most effective method to add SEO Friendly code to Blogger
Go to Blog Title → Template → Edit HTML and include the underneath code simply over the tag </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/> <script type='text/javascript'>//<![CDATA[ jQuery('a').each(function(){// Let's make external links open in a new tab. var href=jQuery(this).attr('href');if (typeof href !='undefined' && href !="" && (href.indexOf('http://') !=-1 || href.indexOf('https://') !=-1) && href.indexOf(window.location.hostname)==-1){jQuery(this).attr("target", "_blank");}});//]]></script> <script type='text/javascript'>//<![CDATA[ jQuery('a').each(function(){// Let's make external links nofollow. var href=jQuery(this).attr('href');if (typeof href !='undefined' && href !="" && (href.indexOf('http://') !=-1 || href.indexOf('https://') !=-1) && href.indexOf(window.location.hostname)==-1){jQuery(this).attr("rel", "nofollow");}});//]]></script> <script type='text/javascript'>//<![CDATA[ $(document).ready(function(){$('img').each(function(){var $img=$(this);var filename=$img.attr('src') $img.attr('alt', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));});});//]]></script>
On the off chance that your blog as of now has the JQuery module you may expel the code in red and if not include the entire code so as to make the content work.
When you have included the code save your template. You are done at this point. Now you can see alt tags in your images, Nofollow tag in External links and Opening of external links in new tab.
I would recommend every blogger to add this code because one small effort of yours can make improve your blog's SEO significantly.
Tags:
SEO


0 comments