Changing title tag in blog
In order to improve site performance and to improve search rank of your site in search engine,you have to give proper and organic title tag of your page.This title tag includes keywords which are widely typed by visitors in search engines.
So,we should change the format of title tag to improve site rank in search engine.There are different ways to change the format of the title tag.
1)Simple Format
Go to Layout->Edit HTML->in blogger dashboard,then find <title></title> using Ctrl+F.
Then replace following code with earlier code.
<title><data:blog.title/></title>
This will give you title of your blog when you will open your site in tab or new window.
2)Advanced Format
Go to Layout->Edit HTML->in blogger dashboard,then find <title></title> using Ctrl+F.
Then replace following code with earlier code.
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<title><data:blog.pageName/> | <data:blog.title/></title>
In above code we can see "index" word which represents home or index page of your site/blog.It also represents labeled page.
Above code puts page title before blog title in title bar,but it only works for static/standalone pages of your blog.It will not work for labeled pages.(e.g. search/label/abc).
Go to Layout->Edit HTML->in blogger dashboard,then find <title></title> using Ctrl+F.
Then replace following code with earlier code.
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.pageTitle/></title>
<title><data:blog.pageName/>|<data:blog.title/></title>
Above code provides different title tags for home page and all other pages.If page type is home page then it will represent only blog title in the title bar of your browser,but page type is of(static page/labeled page) then
it will represent page name/label name before blog title in the browser.
So,above codes improve the site rank in search engines by easily finding the blog by typed keywords related to your titles.