Checkmark

Thank you for your feedback

Insert line breaks and paragraph breaks using HTML

Article ID: SLN18974

 Note: Breaks inserted using the "Enter" key won't be displayed in your floating cart.

Insert a line break

Use the <br /> tag to add a line break between two lines of text.

This is my first line of text. I want a line break here.<br />This is my second line of text.

The text above will display as:

This is my first line of text. I want a line break here.
This is my second line of text.
   

Insert a paragraph break

Use the <p> and </p> tags to add a paragraph break between two blocks of text.

<p>This is my first line of text. I want a paragraph break.</p>
<p>This is my second line of text.</p>

The text above will display as:

This is my first line of text. I want a paragraph break.

This is my second line of text.