Paragraph Tag

The HTML <p> tag is used to define a paragraph. A paragraph always starts on a new line and browsers automatically add space before and after the paragraph.

Output:

This is a paragraph.

This is another paragraph. HTML automatically adds space between paragraphs.

Paragraphs can contain long text and will wrap automatically according to the screen size.

HTML

<!DOCTYPE html>
<html>
<head>
  <title>Paragraph Example</title>
</head>
<body>

  <p>This is a paragraph.</p>

  <p>
    This is another paragraph. HTML automatically adds space
    between paragraphs.
  </p>

  <p>
    Paragraphs can contain long text and will wrap automatically
    according to the screen size.
  </p>

</body>
</html>