CREATING AN HTML DOCUMENT
A HTML file extension is " html " or " htm " ( eg : index.html or index.htm ).
To get such a file, you can use a text editor such as NOTEPAD to write the source code.
Stages for creating a HTML file:
1 To start open the text editor NOTEPAD (START button> Programs> Accessories> Notepad)
2 Insert the source code file
3 To save the file with the Save As option (the File menu> Save As)
4 Filename will be followed by extension htm extension or html (example: example.html)

Open new text document notepad page and copy this code inside:
<html>
<head>
<title> MY FIRST PAGE </title>
</head>
<body>
MY FIRST DOCUMENT
</body>
</html>

Then click file -> Save as -> example.html

And the result we'll be:
MY FIRST DOCUMENT