This html show`s the usage of horizontal rule and you can use it anytime its just like a enter when you typing.....
Output
Text will continue to flow n 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.
Source Code
<HTML>
<HEAD>
<TITLE>HTM13</TITLE>
</HEAD>
<BODY>
Text will continue to flow n 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>