Paragraph tag which is also known as "p" tag which is used to write paragraph text in HTML document. 

The Syntax of paragraph tag is as,


<p> Welcome to Angular Feed HTML Tutorials  </p>


The opening and closing p tag is called as paragraph element.

The full HTML script can be written like, 

<!DOCTYPE html>
<html>
  <head>
     <meta charset="utf-8">
     <title> HTML Tutorial </title>
 
  </head>
  <body>
 
    <p> Welcome to Angular Feed HTML Tutorials  </p>

  </body>

</html>