A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (2024)

A step-by-step beginner's guide to creating a personal website and blog using Jekyll and hosting it for free using GitHub Pages.

View Demo SiteDownload Demo Files

This guide is meant to help Git and GitHub beginners get up and running with GitHub Pages and Jekyll in an afternoon. It assumes you know very little about version control, Git, and GitHub. It is helpful if you know the basics of HTML and CSS since we'll be working directly with these languages. We'll also be using a little bit of Markdown, but by no means do you need to be an expert with any of these languages. The idea is to learn by doing, so the code we'll be implementing in this tutorial is available in this guide or can be downloaded entirely at this GitHub repo. Feel free to copy and paste or type this code directly into your project's files.

For a little background on why I chose GitHub and GitHub Pages for my personal website (and other projects), see this note.

Other Resources You Should Know

In order to make GitHub Pages accessible to a wider audience, this guide focuses on using the web interface on github.com to build your personal website, thereby generalizing and glossing over the standard tools associated with Git and GitHub. To get a lot dirtier with Git and GitHub (ie, the command line and terminal), there are several other great guides you should also know about, probably bookmark, and read after completing this one, or jump over to if that is more your speed: Anna Debenham, Thinkful, and even GitHub itself go above and beyond making the command line or local workflow of GitHub hosting and Jekyll templates accessible to a wider audience.

Also, at the end of this document, there is a pretty good list of resources related to Git, GitHub/Pages, Jekyll, and Markdown that can help you dive deeper into these tools. I'll do my best to keep this list updated as I find new ones.

What is Git, GitHub, and GitHub Pages?

Git, GitHub, and GitHub Pages are all very closely related. Imagine Git as the workflow to get things done and GitHub and GitHub Pages as places to store the work you finish. Projects that use Git are stored publicly in GitHub and GitHub Pages, so in a very generalized way, Git is what you do locally on your own computer and GitHub is the place where all this gets stored publicly on a server.

Git

Git is a version control system that tracks changes to files in a project over time. It typically records what the changes were (what was added? what was removed from the file?), who made the changes, notes and comments about the changes by the changer, and at what time the changes were made. It is primarily used for software development projects which are often collaborative, so in this sense, it is a tool to help enable and improve collaboration. However, its collaborative nature has led it to gain interest in the publishing community as a tool to help in both authoring and editorial workflows.

Git is for people who want to maintain multiple versions of their files in an efficient manner and travel back in time to visit different versions without juggling numerous files along with their confusing names stored at different locations. Think of Git and version control like a magic undo button.

In the diagram below, each stage represents a “save”. Without Git, you cannot go back to any of the in between stages from the initial draft and final draft. If you wanted to change the opening paragraph in the final draft, you’d have to delete data that you couldn’t recover. To work around this, we use the “save as” option, name it something different, delete the opening paragraph and start writing a new one.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (1)

With Git, the flow is multidirectional. Each change that is significant is marked as important in a version, and you proceed. If you need to get back to earlier stages, you can without any loss of data. Presently, Google Docs “revision history” or Wikipedia’s “edit history” work in this sort of fashion. Git is just a lot more detailed and can get a lot more complex if needed.1

When you have the chance, I highly recommend this 15 minute, hands-on web tutorial on using Git.

GitHub

GitHub is a web hosting service for the source code of software and web development projects (or other text based projects) that use Git. In many cases, most of the code is publicly available, enabling developers to easily investigate, collaborate, download, use, improve, and remix that code. The container for the code of a specific project is called a repository.

There are thousands of really cool and exciting repositories on GitHub, with new ones added every day. Some examples of popular software development projects that make their code available on GitHub include:

  • Twitter Bootstrap, an extremely popular front-end framework for mobile first websites, created by developers at Twitter.
  • HTML5 Boilerplate, a front-end template for quickly building websites,
  • The JavaScript Visualization Library D3
  • Ruby on Rails, the open-source web framework built on Ruby.

Usually, people just host the files that contain their code, so what you see on the end view is the actual code, as in this example from the Ruby on Rails project:

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (2)

GitHub Pages

GitHub Pages are public webpages hosted for free through GitHub. GitHub users can create and host both personal websites (one allowed per user) and websites related to specific GitHub projects. Pages lets you do the same things as GitHub, but if the repository is named a certain way and files inside it are HTML or Markdown, you can view the file like any other website. GitHub Pages is the self-aware version of GitHub. Pages also comes with a powerful static site generator called Jekyll, which we'll learn more about later on.

Getting Started with GitHub Pages

Don't worry if some of these concepts are still a little fuzzy to you. The best way to learn this stuff is to just start doing the work, so let's not waste anymore time and dive right in.

1Create your project's repository. Login to your GitHub account and go to https://github.com/new or click the New repository icon from your account homepage.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (3)

2 Name your repository username.github.io, replacing username with your GitHub username. Be sure it is public and go ahead and tell GitHub to create a README file upon generating the repo.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (4)

3 Create an index.html page by clicking the plus icon next to your repository name and typing the file name directly in the input box that appears.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (5)A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (6)

On the resulting page, put this markup inside of the GitHub text editor:

<!DOCTYPE html><html><head><title>Hank Quinlan, Horrible Cop</title></head><body><nav> <ul> <li><a href="/">Home</a></li> <li><a href="/about">About</a></li> <li><a href="/cv">CV</a></li> <li><a href="/blog">Blog</a></li> </ul></nav><div class="container"> <div class="blurb"> <h1>Hi there, I'm Hank Quinlan!</h1><p>I'm best known as the horrible cop from <em>A Touch of Evil</em> Don't trust me. <a href="/about">Read more about my life...</a></p> </div><!-- /.blurb --></div><!-- /.container --><footer> <ul> <li><a href="mailto:hankquinlanhub@gmail.com">email</a></li> <li><a href="https://github.com/hankquinlan">github.com/hankquinlan</a></li></ul></footer></body></html>

4 Commit index.html. At the bottom of the page, there is a text input area to add a description of your changes and a button to commit the file.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (7)

Congrats! You just built your first GitHub Pages site. View it at http://username.github.io. Usually the first time your GitHub Pages site is created it takes 5-10 minutes to go live, so while we wait for that to happen, let's style your otherwise plain HTML site.

5 To style the content go back to your repository home and create a new file named css/main.css. The css/ before the filename will automatically create a subdirectory called css. Pretty neat.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (8)

Place the following inside main.css:

body &lbrace; margin: 60px auto; width: 70%;&rbrace;nav ul, footer ul &lbrace; font-family:'Helvetica', 'Arial', 'Sans-Serif'; padding: 0px; list-style: none; font-weight: bold;&rbrace;nav ul li, footer ul li &lbrace; display: inline; margin-right: 20px;&rbrace;a &lbrace; text-decoration: none; color: #999;&rbrace;a:hover &lbrace; text-decoration: underline;&rbrace;h1 &lbrace; font-size: 3em; font-family:'Helvetica', 'Arial', 'Sans-Serif';&rbrace;p &lbrace; font-size: 1.5em; line-height: 1.4em; color: #333;&rbrace;footer &lbrace; border-top: 1px solid #d5d5d5; font-size: .8em;&rbrace;ul.posts &lbrace; margin: 20px auto 40px; font-size: 1.5em;&rbrace;ul.posts li &lbrace; list-style: none;&rbrace;

Don't forget to commit the new CSS file!

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (9)

6 Link to your CSS file inside your HTML document's <head>. Go back to index.html and select the "Edit" button.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (10)

Add a link to main.css (new markup is in bold):

<!DOCTYPE html><html><head><title>Hank Quinlan, Horrible Cop</title><!-- link to main stylesheet --><link rel="stylesheet" type="text/css" href="/css/main.css"></head><body><nav> <ul> <li><a href="/">Home</a></li> <li><a href="/about">About</a></li> <li><a href="/cv">CV</a></li> <li><a href="/blog">Blog</a></li> </ul></nav><div class="container"> <div class="blurb"> <h1>Hi there, I'm Hank Quinlan!</h1><p>I'm best known as the horrible cop from <em>A Touch of Evil</em> Don't trust me. <a href="/about">Read more about my life...</a></p> </div><!-- /.blurb --></div><!-- /.container --><footer> <ul> <li><a href="mailto:hankquinlanhub@gmail.com">email</a></li> <li><a href="https://github.com/hankquinlan">github.com/hankquinlan</a></li></ul></footer></body></html>

Visit http://username.github.io to see your styled website. It should look like the page at http://hankquinlan.github.io.

Using Jekyll with GitHub Pages

Like GitHub Pages, Jekyll is self-aware, so if you add folders and files following specific naming conventions, when you commit to GitHub, Jekyll will magically build your website.

While I recommend setting up Jekyll on your own computer so you can edit and preview your site locally, and when ready, push those changes to your GitHub repo, we're not going to do that. Instead, to quickly get a handle on how Jekyll works, we're going to build it into our GitHub repo using the GitHub web interface.

What is Jekyll?

Jekyll is a very powerful static site generator. In some senses, it is a throwback to the days of static HTML before databases were used to store website content. For simple sites without complex architectures, like a personal website, this is a huge plus. When used alongside GitHub, Jekyll will automatically re-generate all the HTML pages for your website each time you commit a file.

Jekyll makes managing your website easier because it depends on templates. Templates (or layouts in Jekyll nomenclature) are your best friend when using a static site generator. Instead of repeating the same navigation markup on every page I create, which I'd have to edit on every page if I add, remove, or change the location of navigation item, I can create what Jekyll calls a layout that gets used on all my pages. In this tutorial, we're going to create two Jekyll templates to help power your website.

Setting Up Jekyll on github.com

In order for Jekyll to work with your site, you need to follow Jekyll's directory structure. To learn about this structure, we're going to build it right into our GitHub repo.

7 Create a .gitignore file. This file tells Git to ignore the _site directory that Jekyll automatically generates each time you commit. Because this directory and all the files inside are written each time you commit, you do not want this directory under version control.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (11)

Add this simple line to the file:

_site/

8 Create a _config.yml file that tells Jekyll some basics about your project. In this example, we're telling Jekyll the name of our site and what version of Markdown we'd like to use:

name: Hank Quinlan, Horrible Copmarkdown: kramdown

At this point, I'm hopeful that you've got the hang of creating files and directories using the GitHub web interface, so I'm going stop using screenshots to illustrate those actions.

9Make a _layouts directory, and create file inside it called default.html. (Remember, you can make directories while making new files. See the main.css step if you forgot.)

This is our main layout that will contain repeated elements like our <head> and <footer>. Now we won't have to repeat that markup on every single page we create, making maintenance of our site much easier. So let's move those elements from index.html into default.html to get something that looks like this in the end:

<!DOCTYPE html><html><head><title>&lbrace;&lbrace; page.title &rbrace;&rbrace;</title><!-- link to main stylesheet --><link rel="stylesheet" type="text/css" href="/css/main.css"></head><body><nav> <ul> <li><a href="/">Home</a></li> <li><a href="/about">About</a></li> <li><a href="/cv">CV</a></li> <li><a href="/blog">Blog</a></li> </ul></nav><div class="container">&lbrace;&lbrace; content &rbrace;&rbrace;</div><!-- /.container --><footer> <ul> <li><a href="mailto:hankquinlanhub@gmail.com">email</a></li> <li><a href="https://github.com/hankquinlan">github.com/hankquinlan</a></li></ul></footer></body></html>

Take note of the &lbrace;&lbrace; page.title &rbrace;&rbrace; and &lbrace;&lbrace; content &rbrace;&rbrace; tags in there. They're what Jekyll calls liquid tags, and these are used to inject content into the final web page. More on this in a bit.

10 Now update your index.html to use your default layout. Replace the entire contents of that file with this:

---layout: defaulttitle: Hank Quinlan, Horrible Cop---<div class="blurb"><h1>Hi there, I'm Hank Quinlan!</h1><p>I'm best known as the horrible cop from <em>A Touch of Evil</em> Don't trust me. <a href="/about">Read more about my life...</a></p></div><!-- /.blurb -->

Notice the plain text at the top of the file. Jekyll calls this the Front-matter. Any file on your site that contains this will be processed by Jekyll. Every time you commit a file that specifies layout: default at the top, Jekyll will magically generate the full HTML document by replacing &lbrace;&lbrace; content &rbrace;&rbrace; in _layouts/default.html with the contents of the committed file. Awesome!

Setting up a Blog

A Jekyll-based blog uses the same conventions that we've familiarized ourselves with in the previous steps, but takes things further by adding a few more for us to follow. Jekyll is very flexible allowing you to extend your site as you wish, but in this guide we're only going to cover the basics: creating a post, making a page to list our posts, creating a custom permalink for posts, and creating an RSS feed for the blog.

We'll want to create a new layout for our blog posts called post.html and a folder to store each individual post called _posts/.

11 Start by creating the layout. Create a file named post.html in your _layouts folder. Notice the post layout uses the default layout as it's base, and adds a couple new liquid tags to print the title of the post and date:

---layout: default---<h1>&lbrace;&lbrace; page.title &rbrace;&rbrace;</h1><p class="meta">&lbrace;&lbrace; page.date | date_to_string &rbrace;&rbrace;</p><div class="post"> &lbrace;&lbrace; content &rbrace;&rbrace;</div>

12 Make a _posts/ directory where we'll store our blog posts. Inside that folder will be our first post. Jekyll is very strict with how these files are named, so pay attention. It must follow the convention YYYY-MM-DD-title-of-my-post.md. This file name gets translated into the permalink for the blog post. So in this example, we'll create a file named 2014-04-30-hank-quinlan-site-launched.md:

---layout: posttitle: "Hank Quinlan, Horrible Cop, Launches Site"date: 2014-04-30---Well. Finally got around to putting this old website together. Neat thing about it - powered by &lbrack;Jekyll&rbrack;&lpar;http://jekyllrb.com&rpar; and I can use Markdown to author my posts. It actually is a lot easier than I thought it was going to be.

Note the file extension .md stands for Markdown, and the Markdown syntax used inside the file gets converted to HTML by Jekyll. Like Wikitext, Markdown is a markup language with a syntax closer to plain text. The idea of Markdown is to get out of the author's way so they can write their HTML content quickly, making Markdown very suitable as a blog authoring syntax. If you aren't already, you'll want to get familiar with Markdown syntax, and this printable cheatsheet (PDF) will be your best friend.

After committing the new post, navigate to http://username.github.io/YYYY/MM/DD/name-of-your-post to view it.

All this is great, but your readers won't always know the exact URLs of your posts. So next we need to create a page on our site that lists each post's title and hyperlink. You could create this list on your homepage or alternatively, create a blog subpage that collects all of your posts. We're going to do the latter.

13 Create a blog directory and create a file named index.html inside it. To list each post, we'll use a foreach loop to create an unordered list of our blog posts:

---layout: defaulttitle: Hank Quinlan's Blog---<h1>&lbrace;&lbrace; page.title &rbrace;&rbrace;</h1><ul class="posts"> &lbrace;&percnt; for post in site.posts &percnt;&rbrace; <li><span>&lbrace;&lbrace; post.date | date_to_string &rbrace;&rbrace;</span> » <a href="&lbrace;&lbrace; post.url &rbrace;&rbrace;" title="&lbrace;&lbrace; post.title &rbrace;&rbrace;">&lbrace;&lbrace; post.title &rbrace;&rbrace;</a></li> &lbrace;&percnt; endfor &percnt;&rbrace;</ul>

Now checkout http://username.github.io/blog/. You should see your first post listed and linked there. Nice job!

Customizing Your Blog

We've only begun to scratch the surface with Jekyll's blog aware functionality. This guide is only going to cover a couple more steps you might want to take for your blog.

You may have noticed that the URL of your blog post does not include the blog directory in it. In Jekyll we can control the structure of our permalinks by editing the _config.yml file we created in Step 8. So let's change our permalink structure to include the blog directory.

14 Edit the _config.yml file. Add the following line at the end of the file:

permalink: /blog/:year/:month/:day/:title

Now your blog posts will live at http://username.github.io/blog/YYYY/MM/DD/name-of-your-post.

It is also very easy to setup an RSS feed for your blog. Every time you publish a new post, it will get added to this RSS file.

15 Inside your blog/ directory create a file and name it atom.xml. Add this to file:

---layout: feed---<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title>Hank Quinlan's Blog</title><link href="http://hankquinlan.github.io/blog/atom.xml" rel="self"/><link href="http://hankquinlan.github.io/blog"/><updated>&lbrace;&lbrace; site.time | date_to_xmlschema &rbrace;&rbrace;</updated><id>http://hankquinlan.github.io/blog</id><author><name>Hank Quinlan</name><email>hankquinlanhub@gmail.com</email></author>&lbrace;&percnt; for post in site.posts &percnt;&rbrace;<entry><title>&lbrace;&lbrace; post.title &rbrace;&rbrace;</title><link href="http://hankquinlan.github.io&lbrace;&lbrace; post.url &rbrace;&rbrace;"/><updated>&lbrace;&lbrace; post.date | date_to_xmlschema &rbrace;&rbrace;</updated><id>http://hankquinlan.github.io&lbrace;&lbrace; post.id &rbrace;&rbrace;</id><content type="html">&lbrace;&lbrace; post.content | xml_escape &rbrace;&rbrace;</content></entry>&lbrace;&percnt; endfor &percnt;&rbrace;</feed>

Now you can include a link to your RSS feed somewhere on your site for users to subscribe to your blog in their feed aggregator of choice. Navigate to http://username.github.io/blog/atom.xml to view your feed.

Wrapping Up

16 You're almost done! Don't forget to create and commit your about/index.html and cv/index.html pages. Since I'm sure you've got the hang of things now, I'll back off and let you get these pages finished on your own.

17 Before going any further, take the time to setup Git and Jekyll on your own computer. This tutorial is all about Git in the web browser, so really it's only the half way point. You're going to have to do this if you want to be able to upload image or PDF files to your GitHub repo. GitHub's tutorials and desktop application make local setup easy, and now that you know many of Git and GitHub's basic concepts, you should be able to get this going. Go do it!

Next Steps

Hopefully this guide has given you the confidence to do many other things with Git, GitHub, Jekyll, and your website or blog. You could go in many different directions at this point, as I'm sure you've already started thinking about, but here are a few other things I think would be worth your time:

Resources

I'll try to keep this list current and up to date. If you know of a great resource you'd like to share or notice a broken link, please get in touch.

Git, GitHub, and GitHub Pages

Jekyll

Markdown

Notes

1. Somasundaram, R. (2013). Git: Version Control for Everyone (pp. 9-17). Birmingham, UK: Packt Publishing.

A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone (2024)

FAQs

How do I host a personal website on GitHub? ›

To do so, you must:
  1. Log in to GitHub and on your home dashboard select “New site from Git”
  2. Go to your site's repository and set your publishing site.
  3. Once you've set and saved your publishing source, your website will be online.
Apr 4, 2024

How to create an own website in GitHub? ›

Creating your site
  1. On GitHub, navigate to your site's repository.
  2. Decide which publishing source you want to use. ...
  3. Create the entry file for your site. ...
  4. Configure your publishing source. ...
  5. Under your repository name, click Settings. ...
  6. In the "Code and automation" section of the sidebar, click Pages.

How to make a portfolio website using GitHub? ›

It's a fantastic way to highlight your work, share your story, and stand out in the tech world.
  1. Step 1: Set Up a GitHub Account. ...
  2. Step 2: Create a New Repository. ...
  3. Step 3: Choose a Theme. ...
  4. Step 4: Customize Your Portfolio. ...
  5. Step 5: Project Pages. ...
  6. Step 6: Local Testing with Jekyll (Optional) ...
  7. Step 7: Commit and Push Changes.
Oct 14, 2023

How does GitHub host websites for free? ›

GitHub Pages is GitHub's answer to project pages, and it allows you to serve any static website straight from your repository. Since GitHub pages support custom domains, you can host a static website on GitHub pages free of charge, with deploys straight from Git.

How do I host my website for free? ›

Can I host a website for free? Yes, platforms such as Wix, Weebly, AwardSpace, and InfinityFree provide options to host websites for free. Each comes with different levels of storage, bandwidth, and server access. WordPress.com also offers a basic free hosting plan suitable for personal blogs and small websites.

Can I host my WordPress website on GitHub for free? ›

You can host your WordPress website on GitHub for free. This allows you to push your changes to your website directly from GitHub.

Can GitHub be used to host a website? ›

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.

How to deploy a website using GitHub? ›

In the "Code and automation" section of the sidebar, click Pages. Under "Build and deployment", under "Source", select Deploy from a branch. Under "Build and deployment", under "Branch", use the branch dropdown menu and select a publishing source. Optionally, open the README.md file of your repository.

How to host a website on GitHub for free with custom domain? ›

Follow the below steps to publish your own website onto GitHub Pages with a custom domain for absolutely no charges.
  1. Setup up a GitHub repository. Set up an empty GitHub repository just the way you normally do. ...
  2. Push your code on the repository. ...
  3. Enable GitHub Pages. ...
  4. Set a custom domain. ...
  5. Get a custom domain.
Feb 11, 2021

Should I host my portfolio website on GitHub? ›

This depends, If you're a Front End Developer, then the most important thing employers care about is your portfolio site. If you're a Back End Developer, then it's your Github that employers care about. If you're a Full Stack Developer, then you must have both.

Is GitHub enough for a portfolio? ›

Although it's not mandatory, it's common for recruiters to want to see your GitHub and sometimes also ask for a Portfolio, so why not combine the two? GitHub is the ideal place because there you can showcase examples of your code, your progress, your studies, and initiatives you've been involved in.

How to use GitHub step by step? ›

  1. Step 1: Create a repository. The first thing we'll do is create a repository. ...
  2. Step 2: Create a branch. Branching lets you have different versions of a repository at one time. ...
  3. Step 3: Make and commit changes. ...
  4. Step 4: Open a pull request. ...
  5. Step 5: Merge your pull request.

How much does it cost to host a website on GitHub? ›

Is GitHub hosting free, or are there any costs involved? GitHub offers free hosting for static websites through GitHub Pages. However, if you require custom domain support or need to host private repositories, there may be additional costs associated with those features.

Do you have to pay for GitHub website? ›

GitHub Pages is available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server.

Is GitHub trustworthy? ›

In general, GitHub is a secure developer platform, but as Fox Mulder and I like to say, trust no one. Just like with any download, you want to be sure you can trust the source before you click. The good news: GitHub offers tools to examine code for any malware or vulnerabilities.

Can you host a website on GitHub with custom domain? ›

In the "Code and automation" section of the sidebar, click Pages. Under "Custom domain", type your custom domain, then click Save. If you are publishing your site from a branch, this will create a commit that adds a CNAME file directly to the root of your source branch.

How do I live a static website on GitHub? ›

  1. Create a new GitHub repository. As mentioned above, we'll use GitHub Pages to host our static website. ...
  2. Clone the repository on your computer. ...
  3. Create a static website. ...
  4. Push your code to GitHub. ...
  5. Open your repository settings. ...
  6. Add a new page. ...
  7. Update your website.
Feb 28, 2022

Can GitHub host a dynamic website? ›

Can GitHub host a dynamic website? No, GitHub cannot host dynamic websites. But you can utilise serverless backend to provide dynamic features. Example of serverless backend services are Google Firebase, AWS API Gateway, MongoDB Stitch etc.

How do I publish my website on GitHub desktop? ›

Add the repository to Github Desktop. If you can't already see your project folder then add your project folder to github desktop. Write a quick message in Summary then Press commit to queue it up and then Publish/Sync. This will add the site to your github repositories.

References

Top Articles
Latest Posts
Article information

Author: Frankie Dare

Last Updated:

Views: 6481

Rating: 4.2 / 5 (73 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Frankie Dare

Birthday: 2000-01-27

Address: Suite 313 45115 Caridad Freeway, Port Barabaraville, MS 66713

Phone: +3769542039359

Job: Sales Manager

Hobby: Baton twirling, Stand-up comedy, Leather crafting, Rugby, tabletop games, Jigsaw puzzles, Air sports

Introduction: My name is Frankie Dare, I am a funny, beautiful, proud, fair, pleasant, cheerful, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.