Mobile app & Software Development company in lagos, akure, Nigeria

How To Host A Website On The Internet For Free: A Step-By-Step Guide.

Hosting and publishing a website on the internet used to be quite a task back in the day, with complex configurations, confusing control panels and shady looking free website hosting sites (unless you didn’t mind shelling out dozens of euros every month on a paid and managed web hosting service).

Luckily, that has all changed with the advent of free and simple static site hosting services like GitHub Pages. In this article, we’ll look at how easy it is to set up Github Pages and show you how you can use it to host your very first website!

By the end of this article, you’ll have your very first website live on the internet that you can share with anyone who has an internet connection. We’ve broken our guide down into four simple steps:

Create a GitHub account
Create a code repository
Upload your website files to your code repository
View your website online
Prerequisites:

Before we get started, we’ll need to have a couple of things handy:

A webpage that we can upload to GitHub (if you don’t have one, or if you don’t know how to create one, you can learn how to do so in our free web development short course).
An email address to set up your GitHub account.
Got everything you need? Let’s begin!

1. Create a GitHub account

First of all, you’ll need a GitHub account. If you’re not already a member, you can create a new account via the following this link: Join Github. Pay special attention to the username field. This will be reflected in your website’s url, so select something that you’d like to share with your circle (for example, if you select “johndoe”, your website will be live at johndoe.github.io).

Mobile app & Software Development company in lagos, akure, Nigeria

Choose the free plan, which is what we need for hosting our website. After this step, you’ll get a little survey that you can choose to fill in.

If all goes well, you’ll be redirected to your dashboard and will be asked to verify your email address. You can do it from your email client. For example, this is what the email looks like in Gmail.

Mobile app & Software Development company in lagos, akure, Nigeria

Once you click on the verify email address button, you’ll be informed that your email confirmation has been successful. Proceed to step two!

2. Create a code repository

At this point, you can start creating something called ‘code repositories’, which sounds very technical but simply means a code project (our website, along with all its files, is an example of a code project, and we’ll create a repository for it on GitHub—or, in simpler terms, we’ll upload our website project to GitHub).

If you couldn’t find the page to create a new GitHub project, click on the following: Create a new GitHub repository.

This is how the page for creating a new repository looks:

Mobile app & Software Development company in lagos, akure, Nigeria

Here’s something important. The name of the repository (The ‘Repository name’ field) has to be exactly the same as the username you selected when signing up for GitHub, followed by “.github.io”.

So if youselected the username “johndoe”, the repository name has to be “johndoe.github.io” here. In our case, we selected “githubpages-testing-cf”, so we’ll name the repository as “githubpages-testing-cf.github.io”.

Keep it as public and click the ‘Create repository’ button.

Mobile app & Software Development company in lagos, akure, Nigeria

3. Upload your website files to your code repository

Having created your code repository, you can now upload your website files. Don’t be intimidated by all the details; we do not need to know any of it right now! Spot the ‘upload an existing file’ (in the ‘Quick setup’ section, just below where you see the name of the repository) and click it:

 

 

On this page, drag and drop all the files from your project folder. If you took the web development short course, this is the folder we named “portfolio”.

Mobile app & Software Development company in lagos, akure, Nigeria

 

After your files are uploaded and listed, scroll down and add a “commit message” which is just a message that describes your action. In our case, we added our project files, so we’ll write something like “added project files”.

Mobile app & Software Development company in lagos, akure, Nigeria

When you’re done, click ‘Commit changes’ and GitHub will take you to the repository’s homepage.

Mobile app & Software Development company in lagos, akure, Nigeria

If you see this, hearty congrats! You’ve successfully posted your project to GitHub. Your website is now live—but how do you view it online? Easy…

4. View your website online

To view your newly published website, open a new tab in your browser and enter the address https://your-username.github.io, replacing your-username with your actual GitHub username; so if your username was “johndoe”, enter https://johndoe.github.io.

Our test accounts username was githubpages-testing-cf, so we’ll type https://githubpages-testing-cf.github.io into the browser’s address bar and press enter!

Mobile app & Software Development company in lagos, akure, Nigeria

Leave a Reply

Your email address will not be published. Required fields are marked *