HTML
Paragraphs

Paragraphs are used to add text to a document in such a way that it will automatically adjust the end of line to suit the window size of the browser.

HTML automatically adds an extra blank line before and after a paragraph.

Paragraph Breakdown

Here is the breakdown of HTML Paragraph.

Paragraph Example

Below example will demonstrate the basic architecture of HTML Paragraph.

<!doctype html>  
<html>
 
    <head> 
        <title>Paragraph Example</title> 
    </head>
  
    <body> 
        <p>You can learn programming languages from PHPDocs.</p>
    </body>

</html>