Skip to content

This is one of our old lessons! Visit the Path page to see all of our latest courses.

Paragraph element – HTML

Summary

To create a paragraph in HTML, use the p element:

<p>Paragraph text.</p>

To see what this element looks like in the browser, view the Demo section below.

Details

The paragraph element is used to create paragraphs in HTML.

When rendered in the browser, each paragraph element will start on its own line.

<p>This paragraph will start on one line in the browser.</p>

<p>This paragraph will start on another line in the browser.</p>

Demo

References

The Paragraph element on MDN