HTML Line break
Line Break
Line breaks are essential when writing a paragraph, especially in HTML texts. Browsers often format the paragraph in a single line even if you have added spaces in your code. That is why it is important to add line breaks in our code to notify our browsers.
Format:
We use the Line break element
to add spacing.
Line breaks
element is composed of starting tag only.
Example:
Hi, I am Jamil!
I am 23 years old.
I like to share my knowledge with people!
I hope you find this lesson useful!
The code in the example will result in an output like this:
Hi, I am Jamil!
I am 23 years old.
I like to share my knowledge with people!
I hope you find this lesson useful!