HTML Line Break: Main Tips
<br>
element adds the HTML line break when the proper line division is necessary.- The
<br>
tags do not have any content. - Do not apply this line break HTML element for setting margins between paragraphs. Use <p> and CSS instead.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Using <br>
To create a HTML line break, you should apply <br>
. However, there is only one styling option for <br>
element: you can add a margin
attribute. It is not considered as a good practice. For setting spacing between the lines, it is better to apply line-height CSS property.
In the example below, we include HTML line breaks to properly format a postal address:
<address>
Door No.00,<br>
Street,<br>
City,<br>
State,<br>
Country.
</address>
Using <br>
tag, you can create the single line break HTML document needs.
Remember: use HTML <br> tag only to include an HTML line break, not to create a new paragraph.