What is a Paragraph?
You know the paragraph in your daily life schools,Colleges etc. But the question is how to write paragraphs in Html. See the example below how to write this.
Note:
Starting tag is <p>
Ending tag is </p>
Remember: Don't break the rules otherwise it will broken your page.
Attributes of Paragraphs:
Here i am talking about the alignment same you see in a word processor like Microsoft Word.
The attribute of a Paragraph is showing that which type of Paragraph you want centered, Justify, Right align etc
If you want to use any of these attribute then you have to use like this
<p align="center" >
See Examples:
Justify Paragraph
<p align="justify">
</p>
Center Paragraph
<p align="center">
</p>
Right Paragraph
<p align="right">
</p>
You know the paragraph in your daily life schools,Colleges etc. But the question is how to write paragraphs in Html. See the example below how to write this.
<p> This is the First Paragraph </p>
Note:
Starting tag is <p>
Ending tag is </p>
Remember: Don't break the rules otherwise it will broken your page.
Attributes of Paragraphs:
Here i am talking about the alignment same you see in a word processor like Microsoft Word.
The attribute of a Paragraph is showing that which type of Paragraph you want centered, Justify, Right align etc
If you want to use any of these attribute then you have to use like this
<p align="center" >
See Examples:
Justify Paragraph
<p align="justify">
</p>
Center Paragraph
<p align="center">
</p>
Right Paragraph
<p align="right">
</p>
Comments
Post a Comment