HTML Program to implement html paragraph


February 18, 2023, Learn eTutorial
1346

Html paragraphs are defined with the <p> tag. The text inside the <p> and </p> tags will be considered as one paragraph. Let us see the example of an HTML program to implement paragraphs.

 

HTML Source Code

                                          <!DOCTYPE html>
 <html>
    <head>
        <title>
            HTML PROGRAMING TUTORIALS
        </title>
    </head>
     <body>
        <p> 
HTML is the most widely used markup language for developing and structuring web pages on the internet. It defines as the building blocks of our webpage. It consists of a series of elements or tags which can be used to structure a webpage and these HTML markup tags are usually called HTML tags. 
</p>
<p> 
HTML tags are keywords surrounded by angle brackets like <html>. We can say HTML tags are nested, which means there are opening and closing tags with the content in between those tags. 
</p>
    </body>
</html>

                                      

OUTPUT

HTML