freeCodeCamp/guide/english/html/elements/paragraph/index.md

495 B

title
Paragraph Tag

Paragraph

The HTML <p> element represents a paragraph of text. <p> usually represents a block of text that is separated from other blocks by vertical blank space.

Example

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

More Information: