Post

Host a website on GitHub for free using GitHub pages ๐Ÿ˜Ž ( Part 1) .

In this blog we are going to learn to host web pages on GitHub for free using GitHub Pages!๐Ÿคฉ . we will host very simple web page like https://0xsalfar.github.io from scratch to complex one.

What is Github

So what is GitHub ? GitHub is company that provide software development version control using Git! So what is Git? Git is a distributed version-control system for tracking changes in source code during software development. itโ€™s very convenient for large software companies and or many developers working in a same project. There are many version control service like GitHub example GitLab,Bitbucket ..etc and we can also host our own verison in our server too.

Github pages

Here we are using GitHub pages service, itโ€™s static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub, optionally runs the files through a build process, and publishes a website.

we can use the github.io sub domain or we can also use cutom domain , here we just using the default github.io sub domain for simplicity . we can start setup by ste

Step 1: Create GitHub account

First we need a GitHub account , thatโ€™s very simple and straightforward, you need to go to github.com and fill your personal information like Email id , Username and Password for the Github profile then click Sign up for GitHub, if you already have an account you can login to that and skip the Step 1.

Create Github Account GitHub Create Account Page

next you might need some human verification to avoid botโ€™s and programs to create the GitHub account , thatโ€™s also very simple like my challenge was to align a turtle ๐Ÿ˜….

Create Github Account GitHub Human Verification

next we need to select a plan. GitHub two basic plans , one is free that doesโ€™;t have any private repo that can collaborate more than one and another plan is Pro that actually for team who need private repo and also many features.

Create Github Account GitHub Planโ€™s

As individual we just need to Free plan, so select that and following that we need to enter some information.

Create Github Account

You can select depends what applies to you and click Complete Setup.

Create Github Account

Next we need to verify our mail id in order to get start to use GitHub. for that check your given mail id and confirm the mail by clicking verify email address button .

Create Github Account

Step 2: Start a new Project.

Create Github Account

next we need to start a new project , it can done by clicking the start a project button.

Create Github Account

next gave name to project , since we are building the GitHub Page website use username.github.io . then add description then select the Public radio button and finally select Initialize this repository with a README , it will create README.md file then click Create repository to start.

Create Github Account

now we can see a window like this, that mean we created our first GitHub project ๐ŸŽ‰.

Step 3: Create HTML File.

Click Create new file and put index.html as name and add some basic html codes.

1
2
3
4
5
6
<html>
  <body>
    <h1> Hello World </h1>
    <p>Thi is webiste is hosted in github using github pages and html </p>
  </body
<html>

next add some commit messages and click Commit new file.

Create Github Account

next you can see the index.html file on the listed file.

Create Github Account

Step 4: Initialize GitHub Pages.

Next we need to Initialize GitHub Pages for that, we need to go to settings -> GitHub Pages

Create Github Account

here you can see the GitHub page is automatically enabled , that because we used the GitHub page naming conversion to name the project.

Create Github Account

if you are not using the username.github.io you need specify the branch to be used for GitHub pages like in the below.

Create Github Account

select the master branch and wait until the page automatically refresh and youโ€™ill get a URL like username.github.io/repoName mine is https://0xsalfar.github.io/sample/

Create Github Account

Step 5: Browse GitHub Page.

Click the URL and you can browse your web page, you just hosted your own website cool ๐Ÿ˜Ž.

Create Github Account

ToDo:

  • Use any free webiste template and customze your website.
  • Use Custom domain like www.example.com instead to github.io sub-domain.
  • Try using markdown instead of HTML
  • Try using Jekyll or other statsic website genarator.

Part 2 will update soon with the ToDo. ๐Ÿ˜‹ You can add your questions and feedback on our MakerGram community forum .

Originally published at https://makergram.com/blog/part1-host-website-on-github-for-free/ .

This post is licensed under CC BY 4.0 by the author.