Computer >> Computer tutorials >  >> Programming >> HTML

How to add a paragraph in HTML?


Use the HTML <p> tag to add a paragraph in HTML. You can try to run the following code to implement <p> tag in HTML −

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML p Tag</title>
   </head>
   <body>
      <p>This is demo text.</p>
   </body>
</html>