Building a Personal Website with GitHub Pages

The easiest way to quickly build, host, and maintain a website for free.

Β·

3 min read

Why use GitHub Pages

GitHub Pages is an easy to use tool built right into GitHub. The tool is entirely free and it can be used to create individual, organization, or project websites. The only prerequisite needed to create a GitHub Pages site is a GitHub account. Once you have a GitHub account you can have a website live on the internet within minutes.

Getting Started

  1. Create a new GitHub repository. Name the new repository with the form [user].github.io where [user] is your GitHub username. Make sure the repository visibility is set to Public.
  2. Navigate to the newly created repository.
  3. In the new repository create either an index.html or index.md file. The index file will be homepage for the site. For the greatest control over the site use HTML. HTML can be combined with CSS and JavaScript to create fully responsive, attractive websites. MD or Markdown is a basic text editing language that can be combined with Jekyll to create styling. It is somewhat more friendly and faster to build with than HTML but offers less customization.
  4. After creating an index file, open the Settings tab in the top bar. Then under Settings open the Pages tab from in the left sidebar.
  5. Choose a branch to be the source branch. The source branch should be where you created the index file.
  6. Once the source branch its selected, GitHub will automatically start building your site and after just a few minutes GitHub will notify you that your site is published at the URL [user].github.io.
  7. The index file will always be the homepage, but more pages can be added to the website by creating additional files in the source branch. Each file will be accessible at the URL containing its name. If you created a new file call second-page.html, that page would be visible at the URL [user].github.io/second-page.html.
  8. Additional steps to customize your new site can be found in the documentation.

Custom Domains

A domain name is used to identify and access a website. For example, google.com or seancoughlin.me are domain names. By default the created website will be hosted at the domain [user].github.io. However, GitHub Pages comes with support for custom domain names.

image.png

A custom domain name is helpful for branding and search engine rankings. Domain names can be purchased through domain name registrars such as GoDaddy or NameCheap.

Conclusion

GitHub Pages is a great option for quickly creating and hosting a personal website. It is easy to use and you can have a site live in just a few minutes.

Pros

  • Pages comes with great documentation.
  • The entire build process is automated and runs quickly so site changes are up and visible within minutes.
  • Site can be fully created and customized with HTML, CSS, and JavaScript or created from Jekyll themes.
  • GitHub Pages supports HTTPS to protect your site and users from malicious tampering.
  • Totally free!

Cons

Did you find this article valuable?

Support Sean Coughlin by becoming a sponsor. Any amount is appreciated!

Β