DEV Community

Cover image for How to use GitHub Pages and Markdown to host a website.
Michal Gornicki
Michal Gornicki

Posted on • Updated on

How to use GitHub Pages and Markdown to host a website.

📢 Original article is available on my website where you can also find my Internship Journal.


GitHub Pages is a 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.


If you are a seasoned programmer or tech guru then this post may not be for you. Although you are still welcome to read it as you may find some issues with this tutorial and I am open to corrections.

I will try to write it as simple (like myself) as possible so even people who are not tech-savvy will be able to follow and start blogging or just publish a website.

Here is the summary of what you will find in this post:


What you need

Most important. Before you start you need to have a GitHub account.

What is GitHub?

Briefly, it is a platform offering internet hosting for software development and version control. You are going to store your code here and you will be able to collaborate with whoever you wish and track and control changes.

I will not cover here how to open a GitHub account. There are many tutorials available on YouTube or just search on Google.
I would recommend just diving right in as the process is not that complicated. Just go to GitHub click "Sign up for GitHub" and follow the instructions. They are straightforward.

I am assuming that you already have an account and you are logged in.


Creating a new repository

1️⃣ On the top right-hand side click on your avatar and then click "Your repositories".

Depending if you are just starting fresh, you may see just info that "your profile name doesn’t have any public repositories yet." or the list of your existing repositories.
2️⃣ Most important is that you need to click on "New".

Now you should see this 👇

Image description

Your repository name should be the same as the owner followed by github.io so like m1ner79 is an owner so the repository is m1ner79.github.io.

A description is optional so you can leave it blank, also leave the selection at Public.

3️⃣ Next, you need to tick "Add a README file" - here is where you will be creating your website content.

"Add .gitignore" is not required at this stage because .gitignore creates a list of files that do not need to be tracked. This can be added at any moment and depending on how complicated your blog is, might not be necessary at all.

4️⃣ Tick "Choose a license" because it will help future collaborators what they can and can't do with your code. You can't go wrong with "MIT License" so select it and click "Create repository" (Before you are going to follow my advice, please have a look 👉 here where Kevin makes a valid observation).

You should see this 👇

Image description

We are almost there. I know, it is THAT easy.


Setting up your website

1️⃣ Now, as you can see on the screenshot below, click "Settings" and then on the left select "Pages" (highlighted in green).

Image description

After you do that you will be advised where is your website "Your site is published at...".

2️⃣ Source(red highlight) should be set to "main" and "/root".

3️⃣ Now the best part. Click on "Choose a theme" (on my screenshot, it says "Change theme" because I already selected the theme).

Image description

On the top each square represents a theme and below you will see what your website will look like when you select it.

4️⃣ Once you are happy with your theme, click on "Select theme" and that's it. You will be presented with a page full of markdown language like this 👇

Image description

5️⃣ Don't worry, just scroll to the bottom and click "Commit new file".

Image description

Now you should see an extra file in your repository.

Image description

Yours might be different because you may selected another theme.

Now starts the best part.


Working on your website/blog

Depending on your needs there are two ways to write your blog.

Option one:

1️⃣ Click on README.md file and then on the pencil, like on the highlighted picture below.

Image description

2️⃣ All you need to do now is remove everything and start writing your blog. In the end, make sure to commit your changes.That will amend your file and new content will appear on your website.

Option one has also another way of editing your code ("another way" is marked with*️⃣).

*️⃣1️⃣ If you have your repository open and you are on your laptop /desktop(it will work with other devices too), all you need to do is just hit "."

This will open Visual Studio Code in your browser and you can start editing right away.

Image description

*️⃣2️⃣ After you will make your changes, you will notice that the source control icon indicates a number of changes. Click on it and then on the top you will see a space where you will enter a message.

Image description

*️⃣3️⃣ This message needs to make sense. Just assume that there might be someone else reading that comment so give them a chance to understand what you did i.e. "add a folder for images" or "update xyz file".

*️⃣4️⃣ Now click the tick and your changes are pushed to your repository.

Give it a few seconds and your changes should be visible when clicking on your GitHub Pages address.

Option two:

A bit more complex and I am doing that(because I like a challenge 😉).

1️⃣ You need to create a folder on your local machine where you are going to keep all files required for your blog. Open a terminal.

2️⃣ Now, in your repository, click "Code" and copy that highlighted link.

Image description

3️⃣ Go back to your terminal and type in "git clone your link goes here"

Image description

This will download all files into your folder. You can now use your favourite editor to work on your blog.

4️⃣ After you have done all changes you need to push these to your repository.

I will not cover how to do it here, instead, I will share some links to the tutorials I have used myself to get better with Git and GitHub.


Hone your Git, GitHub and Markdown skills

This is a very good tutorial from well known freecodecamp.com 👉 How to Start and Create your First Repository.

If you prefer YouTube then try this one 👉 Git and GitHub explained for beginners.

Also, I know that I said it is easy to start writing your blog but you need to get some of the basics for the markdown language so your website will render the way you wanted.

Here is a great source 👉 Markdown Guide and if you like emojis then this is a must 👉 Emojipedia.

That would be all. Please let me know what you think about this post.

Oh, and if you wish to check my internship journal (shameless plug) then click here 👉 Internship Journal.

Thank you for your time, bye!

Top comments (4)

Collapse
 
kbeirne profile image
Kevin Beirne • Edited

Good post.

I would consider changing the part saying "you can't go wrong with an MIT license" since this could be a really bad decision if you want to protect the content of your blog from replication! The newer devs you are targeting with this article may not know this and if they are unsure then "no license / no permission" might be preferable, at least in the beginning.

References:

"The MIT License is short and to the point. It lets people do almost anything they want with your project, like making and distributing closed source versions."
choosealicense.com/

"When you make a creative work (which includes code), the work is under exclusive copyright by default. Unless you include a license that specifies otherwise, nobody else can copy, distribute, or modify your work without being at risk of take-downs, shake-downs, or litigation."
choosealicense.com/no-permission/

"If you plan to use the code yourself, with no commercial applications, and are not planning to share it with anyone, then you don’t need one."
fossa.com/blog/how-choose-right-op...

Collapse
 
m1ner profile image
Michal Gornicki

Thank you very much for your feedback, Kevin. I have added the link to your comment on that part of the blog.

Collapse
 
gamerseo profile image
Gamerseo

Great post

Collapse
 
m1ner profile image
Michal Gornicki

Thank you.