Let's set up your computer so it's ready to code. I recommend the for coding. Atom text editor Watch this video to see how to get yourself setup. Code Explained HTML stands for HyperText Markup Language. It's used to create every webpage. It defines the structure and the content of a page. Tags are what HTML uses to define these structures. Tag names are surrounded by <>, also known as angle brackets. Angle brackets are the greater than and less than signs, above the period (.) and comma button (,) on most keyboards. Tags typically have an opening tag and a closing tag (there are some exceptions to this rule). All HTML files must start and end with an tag. html < > html </ > html Closing tags in HTML have a '/' after the first angled bracket. To display something in the browser, you should enclose the content inside tags. body Hello HTML! < > html < > body </ > body </ > html Notice how we start to our HTML code here. This makes it easier to read. The indents represent what tag we are "inside". It's clear that the body tag is inside the html tag here, and that our sentence "Hello HTML!" is inside the body tag. indent The last tag that was used in the video was a heading 1 tag. There are 6 heading tags in HTML from <h1> all the way to <h6>. We'll look into this more in the next lesson. Heading 1! Hello HTML! < > html < > body < > h1 </ > h1 </ > body </ > html Hotkeys CMD + S / CTRL + S to save CMD + R / CTRL + R to refresh your browser Action Items Before proceeding you should have completed the following: Installed Atom on your computer Opened Atom and created a file website.html Added the code in this lesson to your file website.html Loaded in your browser (Google Chrome is recommended) website.html Modified the code (simply change the text), saved it and refreshed your browser to see the change. Once you've completed these steps and are comfortable with how everything works, you're ready to move on to the . next lesson If you have any questions, please let me know - email me eddy@risingblock.com Previously published at https://www.risingblock.com/setup-your-computer