Files
freeCodeCamp/guide/english/html/elements/paragraph/index.md
Sam 65db5549f4 Corrected markdown and code sample formatting (#23374)
* Corrected markdown and code sample formatting

Added code highlighting to `<p>`, to prevent it being interpreted as a new paragraph.
Also made indentation in the code sample consistent.

* Fixed typo and formatting
2018-11-23 20:19:15 -05:00

495 B

title
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: