The <br> tag is line break element in HTML. We can use only one br tag for a web page.
For example:-
<!DOCTYPE html>
<html>
<head>
<title>BR Tag</title>
</head>
<body>
<p>This is first line.<br>This is second line.</p>
</body>
</html>
Output
This is first line.
This is second line.
Copyright ©2022 coderraj.com. All Rights Reserved.