Use </br> tag starts from the next line.
EX- Welcome to Coding Request</br>How are you</br>
What are you doing</br>
Now we are checking the line break tag in HTML
<html>
<head>
<title>Line Break Coding</title>
</head>
<body>
<p>Welcome to Coding Request</br>
What is your name?</br>
My name is steve smith</br>
Thank You</p>
</body>
</html>
Coding view in notepad++
Noteped++ Download link here https://notepad-plus-plus.org/downloads/Image 1
Some coding meaning here
<title>........</title> - Your title place
<p>..........</p> - Your Paragraph place
</br> - line Break
Result view in browser
Image 2