<p>: The HTML Paragraph Element
1 Description
The <p>
element is used to create a paragraphs of text in
an HTML document. <p>
elements should not
be nested within each other.
2 Examples
<!DOCTYPE html>
<html>
<head>
<title>HTML Paragraph Element Example</title>
</head>
<body>
<p>This is a paragraph element!</p>
</body>
</html>
This document was last updated: