Hemal Mamtora
Hemal Mamtora

Reputation: 129

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?

Upvotes: 2

Views: 5687

Answers (1)

MoKhajavi75
MoKhajavi75

Reputation: 2702

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

Upvotes: 4

Related Questions