<P>
The paragraph element creates a break between paragraphs on your page.
Basically, it inserts a blank line between the content before and after
the tag.
The closing tag is optional.
Attributes
| Attribute |
Description |
| ID |
Identifies this tag to reference in script (program code) |
| CLASS |
Define the class used to render this element (defined by a style sheet) |
| TITLE |
A title that is associated with the element (displayed as a tooltip in Internet Explorer) |
| ALIGN |
Indicates the horizontal alignment for content contained inside the P element. May
be one of the following: "left", "right" or "center" |
|
Example
<P ALIGN="center">
Content of the first paragraph
</P>
<P ALIGN="center">
Content of the second paragraph
</P>
Renders As:
Content of the first paragraph
Content of the second paragraph
Compatibility
HTML 4.01
|