Reputation: 2531
I have three static web projects that I would like to host on my GitHub account.
I noticed in the documentation that you have to write your username for a repo name in order to tell GitHub that this will be a static web-site (ex. bluebird/bluebird.github.io
).
Is it possible to host my projects with different name other than my username?
Upvotes: 8
Views: 9590
Reputation: 36451
If you want three separate .github.io
URLs, like this:
...then you have no other choice but create one separate GitHub account for each site.
Obviously you can have only one http:/username.github.io
URL per username :-)
But there's another solution: you can have one static page for each repository.
This is called Project Pages.
You can create three repositories, one per static site you want:
Follow the instructions and you can have three static sites with URLs like this:
Upvotes: 17