Programming Code Center(PCC)
[HTML]

(PCC)::[how-to-use-paragraph-tag-in-html-language-with-there-output]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>Here is a first paragraph of text.</p>
<p>Here is a second paragraph of text.</p>
<p>Here is a third paragraph of text.</p>
</body>
</html>

Output :

Paragraph Example

Here is a first paragraph of text.

Here is a second paragraph of text.

Here is a third paragraph of text.