Publishing any kind of written works requires the use of a paragraph. The paragraph tag is very basic and a great introductory tag for beginner's because of its simplicity.
The <p> tag defines a paragraph. Using this tag places a blank line above and below the text of the paragraph. These automated blank lines are examples of how a tag "marks" a paragraph and the web browser automatically understands how to display the paragraph text because of the paragraph tag.
Example:
<p>Paragraph</p>
<p>Paragraph tags</p>
OutputParagraph
Paragraph tags
Paragraphs can be formatted in HTML much the same as you would expect to find in a word processing program. Here the align attribute is used to "justify" our paragraph.
Example:
<p align="justify">Paragraph Justify. For example you have done very good job
</p>
OutputParagraph Justify. For example you have done very good job
Paragraph align "center" propery. for using the text alignment in center positions
Example:
<p align="center">For instance, let's say you had a HUGE school or work</p>
OutputFor instance, let's say you had a HUGE school or work
Each line of the paragraph has now been centered inside the display window.
Paragraph text alignment in right positions. using align "right" property for right alignment text.
Align Right:
<p align="right">You have done very good job</p>
OutputYou have done very good job
Every line of the paragraph above is now aligned to the right hand side of the display box.