HTM13


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Your Web browser ignores white spaces and pressing Enter or the Return key does not actually create a new line on the chunk of text on your Web page as seen on the code. It will create a new line for the text that you want to appear on the next line.


..Back to the top..



OUTPUT:

HTM13 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
anytime you want.


..Back to the top..



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
you can go to the next line
anytime you want.
</BODY>
</HTML>


..Back to the top..