HTML Paragraph Command Explanation
The <p> tag is used to identify blocks of paragraph text.
The closing </p> tag is optional and is implied by the opening tag of the next HTML element encountered in an HTML document after an opening <p> tag.
After a block of paragraph text is displayed, a new line or break is automatically displayed and another new line is added.
example:
<p>This is paragraph one.</p>
<p>This is paragraph two.</p>
<p>This is paragraph three.</p>
will produce the following:
This is paragraph one.
This is paragraph two.
This is paragraph three.