Reputation: 129
I have made a project on GitHub and recently added an index.html
file.
according to the link: creating project pages on github.io
I added an index.html
file to my repository https://github.com/Hemal-Mamtora/HMS
I tried to go to the link http://Hemal-Mamtora.github.io/HMS which shows: "PAGE NOT FOUND".
How to get a web page for github project?
Upvotes: 2
Views: 5687
Reputation: 2702
According to the docs:
Start from scratch
<h1>Hello World!</h1>
Click on the Settings tab and scroll down to the GitHub Pages section. Then select the master branch source and click on the Save button.
Your GitHub page is ready at http://username.github.io/repository
Also you can use a theme
Click on the Settings tab and scroll down to the GitHub Pages section.
Press Choose a theme
Pick one and then edit it as you wish! - Commit
Your GitHub page is ready at http://username.github.io/repository
Upvotes: 4