HTMLHTML10 min read

HTML Paragraphs

Write normal text using p tag, and understand spacing behavior.

David Miller
December 18, 2025
2.4k59

Paragraphs are written using

.

Example

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

Preview

This is a paragraph.

This is another paragraph.

Important note

HTML ignores extra spaces in normal text.
For a new line inside paragraph, use
(but do not overuse it).

#HTML#Beginner