You can make your blogger blog more SEO enhanced by some tricks dealing with the header image. By default the header image does not have the alt tag and title tag so you have to customize it on your own.
As usual, you have to go to the “Edit Html” section of your blog and tick the “Expand Widget Templates” button. Here comes the editing part.
Look for the code:
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a></div>
You have to change:
img expr:alt='data:title'
to:
img alt='Bdtechie Blog Header Image'
and at the end insert the code given below:
title='connecting people with technology'
After the above change, the code will be something like this:
<div id='header-inner'> <a expr:href='data:blog.homepageUrl' style='display: block'> <img alt='Bdtechie Blog Header Image' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block' title='Connecting People With Technology'/> </a></div>


