The <br> tag breaks a line of text at the point where it appears. When a browser encounters
a <br> tag, it restarts the text after the tag at the left margin.
|
Example <html> <head> <title> HTML Tutor </title><head> <body> <p>You're my sunshine after the rain. <br> You're the cure against my fear and pain. <br> 'Cause I'm losing my mind when you're not around. <br> It's all. It's all because of you. </p> </body> </html> Output result |