HTML Editor/Editors
HTML can be edited by using a professional HTML editor like sublime text editor.
But ,for learning we will recommend a simple text editor like Notepad/Notepad ++(for pc) and for android devices we recommend aCode/anWriter free/Notepad++.
Follow the steps below to create your first web page using Notepad (For pc)
- Step 1> Open Your Notepad
To open Notepad click Start button. Then search Notepad and click on it.
-
Step 2 > Write or Paste Some HTML Code
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>Try it Yourself »

-
Step 3> Save The HTML File
Click File > Save As in the Notepad menu.
You can give it any name ending with .html or .htm like index.html
Then click on save button.
-
Step 4 > View The HTML Page in Your Browser
Double click on that file and choose open with... to open the HTML file in your favorite browser.


NOTE : Here .html is extension of html file.
Follow the steps below to create your first web page using anWriterfree (For android devices)
- Step 1> Open The anWriterfree app .
- Step 2> Write or Paste Some HTML Code.
- Step 3> View the HTML Page.

Here you can also save the HTML file and then view.
Comments (0)