<p>
    HTML (HyperText Markup Language) is
    <br>
    the most fundamental language for creating web pages
    and is essential for learning web development.
</p>
<hr> <!-- A paragraph-level thematic break -->
<p>
    CSS (Cascading Style Sheets) is
    <br>
    a language used to define the appearance and style,
    that is, the design of web pages written in HTML (or XML).
</p>
<hr> <!-- A paragraph-level thematic break -->
<p>
    JavaScript is
    <br>
    one of the most widely used
    programming languages in web development.
</p>
Rendered Output
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Incorrect Use of the HR Tag</title>
    </head>
    <body>
        <header>
            <h1>Main Title</h1>
        </header>
        <nav>
            <ul>
                <li><a href="#">Menu Item 1</a></li>
                <li><a href="#">Menu Item 2</a></li>
                <li><a href="#">Menu Item 3</a></li>
            </ul>
        </nav>
        <section>
            <h2>Section Title</h2>
            <p>This is the content of the section.</p>
        </section>
        <hr> <!-- Incorrect usage: placing the <hr> tag outside of a section or content area -->
        <footer>
            <small>Copyright © 2026 Incorrect Example Company. All rights reserved.</small>
        </footer>
    </body>
</html>
.horizontal-line {
    border-top: 1px solid black; /* Defines the style of the horizontal line */
    margin-top: 20px; /* Adjust spacing as needed */
    margin-bottom: 20px; /* Adjust spacing as needed */
}
<div aria-hidden="true" class="horizontal-line"></div>
Rendered Output