How to break line in HTML?
In HTML, there are different ways to break a line or create a line break depending on the context in which it is used. Here are some of the most common ways to create a line break in HTML:
Using the <br>
tag: To create a line break within a paragraph or text, you can use the <br>
tag. This tag is a self-closing tag, which means it does not require a closing tag. Here’s an example:
This is the first line.<br>
This is the second line.
Using the <p>
tag: You can also create a new line by wrapping the text in a <p>
(paragraph) tag. The <p>
tag automatically adds a line break before and after the text it contains. Here’s an example:
<p>This is the first line.</p>
<p>This is the second line.</p>
Using the CSS white-space property: If you want to break a line without creating a new paragraph or using the <br>
tag, you can use the white-space property in CSS. Here’s an example:
<p>This is the first line.
This is the second line.</p>
The white-space: pre; property preserves all white-space characters, including line breaks and spaces, as they appear in the HTML code.
These are some of the most common ways to break a line in HTML. Choose the one that suits your needs best depending on the context in which you want to use it.