Blogi

Free Blog Tools

This is why you need to use HTML 5

There is actually been a big debate over html 5 for apps that installed in your phone, what are the best application for both.

Fundamental html 5 is that you can deliver an apps experience on a mobile web and you don't have to download it on your phone. There is a couple different schools of thought, but in my opinion there is 5 reasons that you might want to use in HTML 5 app instead of a native app.

First is you can deploy immidiately. Once you code up a html 5 website, you don't have to submit it to the app store, you don't have to wait for apps approve it, which could be months and you could get it tonight.
So really great plus that you can actually create it and deply it immidiatey. Some more really, you make an html 5 web app it works across apple, android, windows 7, blackberry so you don't have to design and develop a multiple in  different apps. and top of that number three is, searchable. Once you put an app into the apple store, it's great somebody is in itunes looking that apps, but if you search in google.
For your bussiness, your brand , they won't find your app, where is you have a html 5 more web app, it is actually indexable and searchable for SEO.

Number 4 is open standard, it's really easy to use, you don't have to learn a different way to develope, across different platforms and it goes back to the idea that's why you can deploy immediately across different platforms.

And 5, it's friendly to content, so there is still gonna be a great reason to get a native app like games almost always look better natively but if you're making content and taking event for all of these less 4 I talked about, it's great way to make sure that it's always update, you need to push update and it always appears as fresh content so people can find you on google so on and so forth.

But HTML 5 is it's ready to set, prime time right know so I would deffiniately consider it for your bussiness and your brand.

Tips for Displaying widgets only on a specific page

For those of you who want to display the widget only on a specific page (whether it be advertising or list link) maybe this could help you.

But before you do it, we must know in advance the types of pages on blogspot or blogger. To find out you can see in my previous post, titled Knowing, 7 types of blogspot page.

As you already know the first way is to go into your blogger account. Select Design> Edit HTML and check Expand Widget Templates. To avoid undesirable first you should backup your blogger template.

Find the widget code that you create to appear on certain pages, such as the code below:
<b:widget id='HTML1' locked='false' title='YOURWIDGETTITLE' type='HTML'>
<b:includable id='main'>
  <! - Only display title if it's non-empty ->
  <b:if cond='data:title != ""'>
    <h2 class='title'> <data:title/> </h2>
  </b:if>
  <div class='widget-content'>
    <data:content/>
  </div>

  <b:include name='quickedit'/>
</b:includable>
</b:widget>
For example, if you want to display the widget is only on the main page then add the following code after <b:includable>.

<b:if cond='data:blog.pageType == "index"'>

and add the following code before </ b: includable>

</b:if>

Then the code will look like this:
<b:widget id='HTML1' locked='false' title='YOURWIDGETTITLE' type='HTML'>
<b:includable id='main'> <b:if cond='data:blog.pageType == "index"'>
  <! - Only display title if it's non-empty ->
  <b:if cond='data:title != ""'>
    <h2 class='title'> <data:title/> </h2>
  </b:if>
  <div class='widget-content'>
    <data:content/>
  </div>

  <b:include name='quickedit'/>
</b:if> </ b: includable>
</b:widget>
Or if you just want to display the widget on just one meal a specific page add this code after <b:includable>.

<b:if cond='data:blog.url == "http://www.YOURDOMAIN.blogspot.com/p/YOURPAGE.html"'>

and add the following code before </ b: includable>

</b:if>

Then the code will look like this:
<b:widget id='HTML1' locked='false' title='YOURWIDGETTITLE' type='HTML'>
<b:includable id='main'> <b:if cond='data:blog.url == "http://www.YOURDOMAIN.blogspot.com/p/YOURPAGE.html"'>
  <! - Only display title if it's non-empty ->
  <b:if cond='data:title != ""'>
    <h2 class='title'> <data:title/> </h2>
  </b:if>
  <div class='widget-content'>
    <data:content/>
  </div>

  <b:include name='quickedit'/>
</b:if> </b:includable>
</b:widget>
After that save your template, then open your blog. Whether your widgets only appear on a specific page or just the pages you want or not. If there could be no mistake in placing the code. This trick may be useful to you.