(Note: you can create up to 10 pages.)
How to create a Blogger Page?
1. Login to your Blogger Account2. In the posting Tab you will find an Edit Pages option
3.Click on the New Page button and you will get a new page editor(same as the post editor that you normally use)
4.You can make the page, in the same way as you create a post.If you want to enable commenting on the page, then you can do so fromthe post options
In the Pages widget, you can decide which pages will be linked and in what order they will appear. You can also choose whether you want new pages to appear automatically in the Pages widget by checking or unchecking the box to the left of Add new Pages by default.
Advanced options:
If you are familiar with the usage of blogger’s conditional tags and want to do something special with the pages, then you can use the following conditional tag for that
<b:if cond='data:blog.pageType == "static_page"'>
When condition is true this will be done
</b:if >
If you want to hide the sidebar on the Static Pages, then you can use these conditional tags properly to implement that
Here is the incomplete sample code for the same
<b:if cond='data:blog.pageType == "static_page"'>
<style type="text/css">
.sidebar-wrapper{display:none;}
</style>
</b:if >
<style type="text/css">
.sidebar-wrapper{display:none;}
</style>
</b:if >