This <p> element creates a paragraph.
<p> |
Yes | Yes | Yes | Yes | Yes |
The align attribute is deprecated in HTML5.
Attribute | Value | Description |
---|---|---|
align | left right center justify |
Not supported in HTML5. Set the alignment of the text within a paragraph |
The <p> tag supports the Global Attributes in HTML.
The <p> tag supports the Event Attributes in HTML.
p { display: block; margin-top: 1em; margin-bottom: 1em; margin-left: 0; margin-right: 0; }
A demo showing how to use <p> tag.
<html>
<body>
<p>This is the first paragraph.</p>
<p>This is the second paragraph.</p>
<p>This is the third paragraph.</p>
</body>
</html>