This is a very small basic article about creating HTML webpages.
To start with you need to create an html file. you can create a text file (.txt) then rename it to something.html file ( .html extension or .htm extension ) .
Then open it using a text editor ( notepad ) and also using a browser ( Google chrome ) .
Now to start , write this codes in the file and save -
<html>
<head>
<title> It's the title of the page. </title>
</head>
<body>
<p> This is a Paragraph </p>
<body>
</html>
Here are some HTMl tags :