Single Line Break
Use the <br/> Tag to add a single line of text without starting a new paragraph.
👉The <br/> Element is an empty HTML element. It has no end tag.
For example:-
👇👇👇👇
<html>
<head>
<title> First page
</title>
</head>
<body>
<p> This is my first paragraph </p>
<p> This is my second paragraph </p>
<p> This is a <br/> line break </p>
</body>
<html>
0 Comments:
Post a Comment