GETTING STARTED:-   
   
HTML files are just simple text files, so to start writing in HTML, you need a simple text editor ,for learning HTML a simple text editor like Notepad (PC) or TextEdit (Mac) will be easy . HTML can be edited by using a professional HTML editor like Adobe Dreamweaver , Microsoft Expression Web,CoffeeCup HTML Editor .
To create a simple Webpage with notepad :    
 => Open Notepad (PC) or TextEdit (Mac)
Write some HTML into Text Editor :   
Following is an example of a simple HTML document with Heading and Paragraph :-
 EXAMPLE:-
---------------------------------------------------------
<html>
<body>
  <h1>This is Heading</h1>
  <p> This is paragraph</p>
</body>
</html> 
 
---------------------------------------------------------
Save the HTML page :-
- The finished page should be saved in .Html extension .
- UTF-8 is the preferred encoding for HTML files .
To view the HTML page :-
 
Open the saved HTML file in your browser. The page will look like this:-
================================   
This is Heading
This is paragraph
================================