Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a GitHub page for an existing project

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?

like image 363
Hemal Mamtora Avatar asked Oct 28 '25 00:10

Hemal Mamtora


1 Answers

According to the docs:

Start from scratch

  1. create a index.html file:

<h1>Hello World!</h1>

  1. 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.

  2. Your GitHub page is ready at http://username.github.io/repository

Also you can use a theme

  1. Click on the Settings tab and scroll down to the GitHub Pages section.

  2. Press Choose a theme

  3. Pick one and then edit it as you wish! - Commit

  4. Your GitHub page is ready at http://username.github.io/repository

like image 133
MohamadKh75 Avatar answered Oct 29 '25 14:10

MohamadKh75