HTML P Tag (Paragraph)
The <p></p> tag helps line up your text. This acts like having 2 <br> codes for line breaks at the end of the paragraph. The finishing </P> tag is assumed if another <P> tag is used for the next paragraph.
Syntax
<P align=position nowrap>
a-paragraph-of-text
</P>
Modifiers
- ALIGN=direction
- The direction helps indicate where you want your paragraph to line up. The direction can be left, right or center.
- NOWRAP
- Does not allow automatic line breaks, but requires a manual <br> tag.