HTM13
DESCRIPTION :
OUTPUT :
SOURCE CODE :
DESCRIPTION :
HTM13 using line break tag to break a line and go to the next line.
OUTPUT :
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.
SOURCE CODE:
<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>
RETURN