<br> HTML Tag

In this article I will discuss <br> tag of HTML
  • 1863

The HTML br tag is used for specifying a line break.

Example

<html>

<head>

    <title></title>

</head>

<body>

    In this article<br />

    I explain the<br />

    &lt;br&gt; tag

    <br />

    which is used for

    <br />

    Line break.

</body>

</html>

 

Output
 

In this article
I explain the
<br> tag
which is used for
Line break.

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

 

© 2020 DotNetHeaven. All rights reserved.