<p>
    CSS (Cascading Style Sheets) is
    <br> <!-- Insert at the point where you want to break the line to improve readability. -->
    a language used to define the presentation and
    styling of web pages written in HTML (or XML).
</p>
Rendered Output
<p>
    Using the br tag between paragraphs creates spacing similar to an empty line.
</p>
<br>
<p>
    This is a visual effect caused by repeated line breaks,
    but using the br tag to create such spacing
    should be avoided.
</p>
Rendered Output
<p style="margin-bottom: 3em;">  <!-- Adjust spacing using the CSS margin-bottom property -->
    Using the br tag between paragraphs creates spacing similar to an empty line.
</p>
<p>
    This is a visual effect caused by repeated line breaks,
    but using the br tag to create such spacing
    should be avoided.
</p>
Rendered Output
<p>First paragraph</p>
<p>Second paragraph</p>
<p>
    First paragraph
    <br>
    Second paragraph
</p>
<p>
    CSS (Cascading Style Sheets) is
    <br>
    <br> <!-- Using consecutive <br> tags -->
    a language used to define the presentation and
    styling of web pages written in HTML (or XML).
</p>
Rendered Output
<p>
    <span style="margin-bottom: 2em; display:inline-block">
        CSS (Cascading Style Sheets) is
    </span>
    <br>
    a language used to define the presentation and
    styling of web pages written in HTML (or XML).
</p>
Rendered Output
br {
    display: none; /* Can be applied.
                      When applied, the line break behavior is removed */
}
br {
  width: 100px;       /* ❌ Not applied */
  height: 20px;       /* ❌ Not applied */
  margin: 10px;       /* ❌ Not applied */
  padding: 5px;       /* ❌ Not applied */
  background: red;    /* ❌ Not applied */
  border: 2px solid black; /* ❌ Not applied */
}
<p>
    CSS (Cascading Style Sheets) is
    <br>
    a language used to define the presentation and
    styling of web pages written in HTML (or XML).
</p>
@media (max-width: 750px) {
    br {
        display: none; /* Applied in mobile layouts */
    }
}
Rendered Output Resize the browser window to see the effect.
On desktop, line breaks are used to improve readability, while on narrower mobile screens, the text is displayed without line breaks.