HTML
HTML ParagraphsHTML Paragraphs
HTML paragraphs block chunks of text together.
Read Time
5 min readDifficulty
BeginnerLast Updated
Jun 15, 2026Version
v1.0.0Introduction
HTML groups text blocks using paragraphs. A paragraph starts on a new line, and browsers add space above and below it. The browser removes extra spaces and line breaks in the source code.
Syntax
Syntax
Example
Example
Try it Yourself
Hands-on Practice
Modify the code below to see how it affects the output. This is the best way to learn!
Interactive Editor
1234567891011121314151617181920
Live Preview
Key Points
- The `
` tag creates paragraphs.
- Paragraphs start on a new line.
- Browsers collapse extra whitespace.
- The `
` tag forces line breaks.