Make a New Paragraph Using HTML
<p>Hello friends!</p>
Start your paragraph with the <p> tag. When you are done with the paragraph, use the ending </p> tag.
Note: Line returns are automatically placed when using the paragraph tag.
To align text in a paragraph, use the
align property like so:
<p align=right>Hello</p>
Property values are left, right, and center.
Note: HTML syntax is simply this: for each opening tag there is a matching closing tag that begins with </
Related Resources:
Make Italic Text Using HTML
Make Text Bold Using HTML
Make Strikethrough Text Using HTML
Make a Line Return Using HTML