HYPER TEXT MARKUP LANGUAGE

To create application first run command and go through "Notepad" application.Here every html programes runs in text editors.So Note pad also one of the text editor in Windows Operating system.
To develop web page following step notations.

Step 1:  In Notepad File menu take a command is "New" is used to create our New document.
Step 2: To "Save" the document in-terms of  ".html" file extension.And apply file type is "all files" anci code is must be blank.
Step 3:  Start Html using the tag is "<html>" (here tag represents the combination of Lessthan and Greatherthan).
Step 4: The main <html> tag  must contains the Head and Body part of the tags mention like <head> and <body>.
Step 5:  Here <head> tag shows the heading or title of the web page.
Step 6: Apply <title> tag to Heading.
For example:
                <html>
                          <head>
                                 <title>My Page</title> <!-- here forward slash(/) shows the ending part of the tag-->
                         </head>
Step 6: After apply <body> Tag.
Step 7: Body Tag shows content information.To write content using with "Paragraph Tag".
Step 8: Paragraph Tag shows "<p>" in HTML.
For example:
              <html>
                    <head>
                             <title>My page</title>
                   </head>
                  <body>
                        <p>This is my Page</p>
                  </body>
                 </html>

Step 9: This is an simple Program an html.
Step 10: To see the Out put using with any "Web Browsers".
Step 11: Browser is an application it's maintain the address of the URL notation.
Step 12: Types of web browsers like Internet Explorer,Netscape navigator,Firefox......etc
Step 13: First to open the web browser after that open the "file menu" it consists a command is "open" and open the path file of the html next click "OK" button and shows output on web browser document.