Getting started with Github page.

Github pages are something as simple as a Github service for serving up static HTML from a Github respository. Github pages can be tied to a project by creating a special branch called gh-pages, or directly to your account by creating a respository called yourname.github.com.

Procedure to create Github pages :

1) open the project.(https://github.com/username/projectname)
2) Click on Admin
3) Click on 'Automatic page Generator'
4) Fill the form and 'Continue to layouts'
5) Select a layout , click 'PUBLISH'
6) Wait for your Page to be created. ( it will take up to 10 mins)
7) Github Page will be availabe at http://username.github.com/projectname.

8) from git terminal ,

cd path/ to /the /project
git checkout gh-pages
git merge master
git push origin gh-pages
git checkout master

9) Now check the page, It is ready.