The title tag plays an important preface especially in SEO. Generally title appears in the web page and in a browser tab. We can design the title by using a styling language like CSS (Cascading-Style-Sheet).Most pro bloggers and webmasters give the prominence to the Title of the web page. That should be, because people see the first title in the SERPs ( Search Engine Result Pages) and on the homepage. Many points to talk about the title tag are out there. I will write some posts about the Title in my future posts.
Today I’m going to show you how to display date and time in the title. The current date and time in the user’s computer will be identified by the Script. Then it will be appearing on the tab bar in the browser. So check out the demo first.
Display Date, Time in title tab
Place below code between <head> and </head> HTML tags in your website.
<script src='https://pro-blog-tricks.googlecode.com/svn/trunk/date-title.js' type='text/javascript'></script>
Display Date & Time in tab bar on Blogger
1: Sign in to your Blogger account.
2: Go to Template >> Edit HTML and find the </head> HTML code in your template.
3: Now paste below code just above of </head> HTML tag.
<b:if cond='data:blog.url == "URL of the page"'>
<script src='https://pro-blog-tricks.googlecode.com/svn/trunk/date-title.js' type='text/javascript'></script>
</b:if>
- Replace URL of the page with the post/static page URL in which you want to display the date and time.
- If you want to implement above script in more than one web page,Just repeat the conditional tag like below example.
<b:if cond='data:blog.url == "URL of the page-1"'>Related Post :- How to Show or Hide widgets in Any Pages In Blogger
<b:if cond='data:blog.url == "URL of the page-2"'>
<b:if cond='data:blog.url == "URL of the page-3"'>
<script src='https://pro-blog-tricks.googlecode.com/svn/trunk/date-title.js' type='text/javascript'></script>
</b:if>
</b:if>
</b:if>
4: Save your Template.
Leave your questions,views and comments in below.


