Paragraphs in HTML
How to create Paragraph ?
- <p></p> tag is used to create a paragraph in html.
- Paragraph automatically change the line, and each paragraph starts with the new line.
- For Example, the following two lines create two paragraphs in HTML.
<p>This creates first paragraph</p>
<p>This creates second paragraph</p>
Attributes of paragraph
- As similar to heading paragraph has an attribute align which is used to align paragraph text to left/ right/ center/ align.
Example:
<p align="left">This text will be align to left</p>
<p align="right">This text will be align to right</p>
<p align="center">This text will be align to center</p>
Comments