1. <Html>    
  2. <Head>  
  3. <title>  
  4. Example of Paragraph tag  
  5. </title>  
  6. </Head>  
  7. <Body>   
  8. <p> <!-- It is a Paragraph tag for creating the paragraph -->  
  9. <b> HTML </b> stands for <i> <u> Hyper Text Markup Language. </u> </i> It is used to create a web pages and applications. This language   
  10. is easily understandable by the user and also be modifiable. It is actually a Markup language, hence it provides a flexible way for designing the  
  11. web pages along with the text.   
  12. </p>  
  13. HTML file is made up of different elements. <b> An element </b> is a collection of <i> start tag, end tag, attributes and the text between them</i>.   
  14. </p>  
  15. </Body>  
  16. </Html>