Software used to type HTML code



HTML is simplest computer programming which you can easily learn and code. Actually its not programming language but a markup language in which you have to use predefined tags by web standards.

In order to start with HTML you do not need to have any special software. You can use any text editor such as notepad, notepad++, visual studio code etc.

Simplest and easily available software is NotePad which is available by default in all computers which have Windows operating system and in other operating systems like LINUX / MacOS you can find NotePad with other names.

To start with it,

  1. Open Note Pad 
  2. Write your HTML Tags as below 

  3. <html>
     <head>
     <title>My First HTML Code</title>
    </head>
    <body>
      <h1>Welcome to my Page</h1>
    </body>
    </html>
  4. Save this file using  option "Save As" and write any name like "myhtml.html" 
  5. Open this file in any web browser to see the output
  6. see below screens



Comments