Two paragraphs using the p tag

I need two sentences to be shown as two different paragraphs using the HTML

tag. Please help.

Presently, I am using the below HTML tags:

This is the first paragraph of text. Paragraphs help in organizing content and making it easier to read.

This is the second paragraph. You can add as many paragraphs as you need to your webpage.

Output is shown as below:

This is the first paragraph of text. Paragraphs help in organizing content and making it easier to read. This is the second paragraph. You can add as many paragraphs as you need to your webpage.

But I need the output like below:

This is the first paragraph of text. Paragraphs help in organizing content and making it easier to read.

This is the second paragraph. You can add as many paragraphs as you need to your webpage.

To achieve the desired output where each sentence is shown as a separate paragraph, you need to use the HTML <p> tag to wrap each paragraph individually. Here’s how you can modify your HTML:

<p>This is the first paragraph of text. Paragraphs help in organizing content and making it easier to read.</p>
<p>This is the second paragraph. You can add as many paragraphs as you need to your webpage.</p>