The line break is used to decide where the text will break on a line or continue to the end of the window. It can be used to move the control to the next line. The tag is used to end a line without inserting a new paragraph. The has no closing tag.
Example of line break
The following text will appear in two different lines.
Without BR tags:
<p>this is sentence one. This is sentence two. </p>
Output:
this is sentence one. This is sentence two.
With BR tag
<p>this is sentence one. <br> This sentence two.</p>
Read More
Comments
Post a Comment