Line Breaks

A line break tag <br/> creates a line space; it does not have a closing tag. In HTML5 you do not have to include the slash <br>.


Example 1


<body>
<p>Learn something new today!</p>
<p>Learn something new<br/>
today!</p>
</body>

Displays

Learn something new today!

Learn something new
today!



Example 2


<body>
<p>It is fun and challenging to learn something new.<br/>
It enhances your<br/>
skills and<br/>
knowledge.</p>
</body>


Displays

It is fun and challenging to learn something new.
It enhances your
skills and
knowledge.




Now do the Exercise!