<h1>Heading Level 1</h1>
<h2>Heading Level 2</h2>
<h3>Heading Level 3</h3>
<h4>Heading Level 4</h4>
<h5>Heading Level 5</h5>
<h6>Heading Level 6</h6>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Heading Tags</title>
    </head>
    <body>
        <h1>Heading Tags</h1>
        <p>The h1, h2, h3, h4, h5, and h6 tags are used to indicate headings for different sections.</p>
        <p>They represent the headings within a webpage or document.</p>       
        <section>
            <h2>Using Heading Tags</h2>
            <p>These tags help define the outline and hierarchical structure of a webpage or document.</p>
            <h3>Benefits of Using Heading Tags</h3>
            <ul>
                <li>
                    Assigning headings to each section clarifies the structure of the document,
                    allowing users to quickly scan and identify relevant content areas.
                </li>
                <li>
                    Search engines analyze page headings to understand the topic of the content,
                    which helps improve search engine optimization (SEO).
                </li>
                <li>
                    They assist users with visual impairments or other disabilities
                    by conveying the structure of the webpage.
                </li>
            </ul>
            <h3>Best Practices When Using Heading Tags</h3>
            <p>Ensure the semantic structure of the content is clear and logical.</p>
        </section>
        <section>
            <h2>Heading Tags and Accessibility</h2>
            <p>.....</p>
            .....
        </section>
        .....
    </body>
</html>
<h1>Heading Level 1</h1>
<h3>Heading Level 3</h3> <!-- Logically or structurally, an h2 is expected here -->
<h4>Heading Level 4</h4>
<!-- Example using a native h3 heading -->
<h3>Heading Level 3</h3>
<p>Content for Heading Level 3</p>
<!-- Example using role="heading" and aria-level -->
<div role="heading" aria-level="3">Heading Level 3</div>
<p>Content for Heading Level 3</p>
<nav aria-labelledby="main-menu-heading">
    <h2 id="main-menu-heading">Main Menu</h2>
    <!-- Main menu items -->
</nav>