Tuesday, December 25, 2018

Line break tag use.

BREAK LINE TAG USE :-

<html>
<body>

<p>This is<br>a paragraph<br>with breaks.</p>

</body>

</html>


OUTPUT:-


  • The HTML <br> element defines a line break.
  • Use <br> if you want a line break (a new line) without starting a new paragraph.
  • The <br> tag is an empty tag, which means that it has no end tag.

No comments:

Post a Comment

Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...