How to add one or more Paragraphs in HTML

You can easily add a paragraph in HTML by using the paragraph HTML tags.

Code

<p>This is a simple HTML paragraph.</p>

Result

This is a simple HTML paragraph.

How to create a single paragraph in HTML

To create a single paragraph you wrap you paragraph’s test with a pair of paragraphs HTML tags as shown below.

<p>This is a single HTML paragraph. You can see it as one paragraph based on its behaviour.</p>

How to create multiple paragraphs in HTML

To add more than one paragraph, create a new pair of paragraph HTML tags below the previous tags.

Code

<p>This is the first HTML paragraph. You can see it as one paragraph based on its behaviour. The text flows as one continous line just like normal paragraphs.</p>
<p>This is a second HTML paragraph. Its is distinct from the previous paragragh and even has more spacing between them.</p>

Result

This is the first HTML paragraph. You can see it as one paragraph based on its behaviour. The text flows as one continous line just like normal paragraphs.

This is a second HTML paragraph. Its is distinct from the previous paragragh and even has more spacing between them.