HTML paragraph tags are used to define the HTML paragraph element. The paragraph element begins with the HTML <p> tag and ends with the HTML </p> tag. The HTML paragraph element should not contain tables and other block elements. The paragraph tags are used to define a block of text as a paragraph. When a block of text is surrounded by the paragraph tags, the browser automatically adds white space before and after the paragraph.
EX<!DOCTYPE html> <html> <body> <p>helpcode.com is the largest Collection of programs. Over 4000 programs are available www.help4code.com</p> </body> </html>