Getting Started
Let's start with the most basic formatting - creating lines and paragraphs.
The Comparison
What you type:
What you see:
HTML Tips and Tricks - HTML Line Break
You can create a line break with an HTML <br> tag.
I use the <br> tag when Markdown line breaks don't work the way I expect them to. This is not a common occurence, but it does happen occasionally.
The <br> tag inserts a single line break and is supported by most modern web browsers. The <br> tag does not require an end tag like most other HTML tags.
Practice Makes Perfect
Now it's your turn to practice what you have learned.
<br> This is the second line of text on a new line. <br><br>Because two break line tags were used, there will be a blank space between this line and the previous lines.Test Your Knowledge