HTML Paragraph

HTML paragraph <p> tag is used to define a paragraph in a webpage. It is used to publish text on the web pages.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML Paragraphs</title>
</head>
<body>
   <p>This is a paragraph.</p>  
   <p>This is a another paragraph.</p>  
 </body>
</html>