After doing this, you should be able to see a bar containing your folder on the left. Simply right-click to add a new file, and name it basic.html. Now you should have a empty space of code which you could edit!

</> W e x p e r t
After doing this, you should be able to see a bar containing your folder on the left. Simply right-click to add a new file, and name it basic.html. Now you should have a empty space of code which you could edit!
Try typing <p>Hello World</p>. This will display a text on the website that says Hello World. This is called a HTML Tag, other tags you could use are button, title, or a (link.) To open the file, go into your folder and double click on your HTML file, which will open on a chrome browser.
Right now, our text looks pretty boring. To make it look better using CSS, above the paragraph add <style> </style>. In this style tag, add .text{color: blue} This is a CSS property, you can also change font, size, text-formatting. Behind the p in <p>, add class = "text" so the style tag can refrence this text specifically to make the text blue. This is called a HTML attribute.