Can I use <br> in other tags?

QuestionsQuestions8 SkillsProHTML Text FormattingNov, 03 2025
076

Yes, you can use the <br> tag within other HTML tags to create line breaks. For example, you can include it inside a <p> (paragraph) tag or a <div> (division) tag. Here's an example:

<p>This is the first line.<br>This is the second line.</p>

<div>
    Line one in a div.<br>Line two in a div.
</div>

In both cases, the <br> tag will create a line break where it is placed.

0 Comments

no data
Be the first to share your comment!