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 <br> to add spacing.

Line breaks <br> element is composed of starting tag only. 
				
			

Example:

				
					<p>Hi, I am Jamil! <br> I am 23 years old. <br> I like to share my knowledge with people! <br> I hope you find this lesson useful!</p>
				
			

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!

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments