HTML 13

Description

It show how to break a line and go to the next line by adding line break tag.

Source Code
html13
<HTML>
<HEAD>
<TITLE>HTM13</TITLE>
</HEAD>

<BODY>
Text will continue to flow in one line until the text reaches the edge of the browser window even if you press the Enter key. If you want to break a line and go to the next line you have to add the line break tag.
<BR>With the line break tag<BR>you can go to the next line<BR>anytime you want.
</BODY>

</HTML>

Output

HTM13 Text will continue to flow in one line until the text reaches the edge of the browser window even if you press the Enter key. If you want to break a line and go to the next line you have to add the line break tag.
With the line break tag
you can go to the next line
anytime you want.