Paragraph Tag
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p> tag as shown below in the example:
Example
<!DOCTYPE html><html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>First paragraph of text.</p>
<p>Second paragraph of text.</p>
<p>Third paragraph of text.</p>
</body>
</html>
Result:
First paragraph of text.Second paragraph of text.
Third paragraph of text.