Paragraph tag - <p></p>
Description
A paragraph tag marks out a paragraph by placing a new line before and after the contents of the tag.
A p tag may not contain another p tag but can contain inline tags.
Example
<p>
A piece of text in a P tag.
</p>
<p>
Another piece of text in another P tag.
</p>
The working example (note the new lines before and after the contents of the tags):
A piece of text in a P tag.
Another piece of text in another P tag.
Attributes for <br/>
| align |
center|left|right |
Aligns the text within the paragraph tags to the center, left or right. |