HTML <br> Tag
The <br> tag adds a line break in the text.
The <br> tag is handy when you want to write addresses or poems.
The <br> tag is like an empty container in HTML. It doesn't have a closing tag, so it's considered empty.
The <br> tag adds a line break in the text.
The <br> tag is handy when you want to write addresses or poems.
The <br> tag is like an empty container in HTML. It doesn't have a closing tag, so it's considered empty.
<!DOCTYPE html>
<html>
<body>
<h1>A Poem</h1>
<p>Be not afraid of greatness. <br> Some are born great, <br> some achieve greatness, <br> and others have greatness thrust upon them. </p>
<p>
<em>-William Shakespeare</em>
</p>
</body>
</html>