How to make your own blog like this website!January 15, 2021🥐 1 min readEver wanted to make your own blog? Do it now!Step 1So first of all, make sure you have Nodejs and VSCode installed on your pc. If not, download it from VSCode from here https://code.visualstudio.com/download and NodeJs from here: https://nodejs.org/en/StepOpen your terminal and write down: bashCopy1npm install -g gatsby-clibashCopy1# This is the starter which we will use2gatsby new my-gatsby-project https://github.com/gatsbyjs/gatsby-starter-blogbashCopy1cd my-gatsby-projectStep 3Open the project in VscodebashCopy1code .The Project structure should look like this: Gatsby will start a hot-reloading development environment accessible by default at http://localhost:8000. Website should look like this Step 4Write your own blog Change the name of the folder hello-world to the title of your blog in our case my-first-blogWrite your content in index.md using MarkdownYou can learn about basic markdown from here: https://www.markdownguide.org/basic-syntaxAnd you’re done!Step 5Host it for free; Press this button to deploy!