HTML Paragraphs

What is a Paragraph?

HTML paragraphs are defined with the <p> tag.

Example

<p>This is a paragraph.</p>
<p>This is another paragraph with <b>bold text</b>.</p>
<p>You can also use <i>italic text</i> inside paragraphs.</p>
Try it Yourself

<p>

Defines paragraph

<b>

Bold text inside paragraph

<i>

Italic text inside paragraph

Summary

  • Paragraphs use <p> tag
  • You can format text inside paragraphs
  • Used for content blocks