Hello World! I'm talking about the basics of HTML. I am using Notepad to create an HTML file. HTML stands for hypertext markup language. HTML consists of a series of nested tags. And we have an opening tag, that says HTML, and a closing tag that says /HTML. And the only difference between these is that this one has a slash: / There are two sections: There's the head, and it has a closing tag. And there's a body, and it has a closing tag. The head usually includes a title. And it has a closing tag. And for the body I'm going to use the "p" tag which stands for paragraph. And, again, a closing tag. Now, I'm going to save it And I've created a directory called HTML. And I'm going to save everything there. But instead of TXT, I'm going to call it dot HTML. And it says do I want to replace that, I'm going to say yes. The next thing I'm going to do is open up a web browser, such as Firefox. And I'm going to select open file, and open that file that I created. And you can see the title is "Hello World" And the text says "Welcome to HTML." If I right click on a webpage page, I can view the page source and see the HTML. There's the title and there's the paragraph. And now, you should create your own webpage in the same way. That's it for now.