Build an Event Hub - Build an Event Hub

Tell us what’s happening:

Need help to check it.
I can’t find what is the wrong.

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</li></a>
     <li><a href="#past-events">Past Events</li></a>  
    </ul>
    </nav>
  </header>  
<main>
    <section>
        <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>
        <p>Date: August 10, 2024</p>
        </article>
    </section>
    <section>
        <section id="past-events">
     <h2>Past Events</h2>
     <article>
        <h3>Cybersecurity Summit 2024</h3>
        <p>An event focusing on the latest trends and threats in cybersecurity. Experts discussed strategies for protecting data and ensuring privacy in an increasingly digital world.</p>
<p>Date: June 15, 2024</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="image 1">
    </article>
    <article>
        <h3>Blockchain Expo 2024</h3>
        <p>A comprehensive event covering the future of blockchain technology. Topics included decentralized finance (DeFi), smart contracts, and the impact of blockchain on various industries.

Date: July 20, 2024</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="mlockchain">
    </article>
    </section>
</main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15

Challenge Information:

Build an Event Hub - Build an Event Hub

Can you say more and point us at something specific?

What is wrong?

What have you tried to investigate?

Welcome to the forum @25yurika.c08

Please count the number of section opening tags in your code.

Happy coding

this is also not correct, notice how a is not inside li, the nesting here is illegal nesting

1 Like