Build an Event Hub -

Tell us what’s happening:

My code is correct, still i fail the test. It asks me to have past event in list item with href=#past-events, i have done that still i fail the test.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Event Hub</title>
</head>

<body>
<header>
    <h1>Event Hub</h1>
    <nav>
        <ul>
            <li><a href="#upcoming-events">Upcoming Events<a/></li>
            <li><a href="#past-events">Past Events</a></li>
        </ul>
    </nav>
</header>
<main>
    <section id="upcoming-events">
        <h2>Upcoming Events</h2>
        <article>
            <h3>AI & Machine Learning Conference 2024</h3>
            <p>
               Join us for a deep dive into the latest advancements in artificial intelligence and machine learning. Industry leaders will share insights and case studies on how AI is transforming various sectors. 
            </p>
            </article>
            <article>
                <h3>Blockchain Developing Conference</h3>
                <p>
                    Join us for a deep dive into the latest advancements in artificial intelligence and machine learning. Industry leaders will share insights and case studies on how AI is transforming various sectors. 
                </p>
            </article>
    </section>
    <section id="past-events">
     <h2>Past Events</h2>
     <article>
         <h3>OSINT Framework Conference</h3>
         <p> Join us for a deep dive into the latest advancements in artificial intelligence and machine learning. Industry leaders will share insights and case studies on how AI is transforming various sectors.</p>
         <img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="A description of the image">
     </article>
     <article>
         <h3>Bugbounty Learning Conference</h3>
         <p> Join us for a deep dive into the latest advancements in artificial intelligence and machine learning. Industry leaders will share insights and case studies on how AI is transforming various sectors.</p>
         <img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="A description of the image2">
     </article>
    </section>
</main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Challenge Information:

Build an Event Hub - Build an Event Hub

Hi,
You may want to fix the closing anchor tag here:

Good luck!