Build an Event Hub - Build an Event Hub

Tell us what’s happening:

for number 16 and 21, i cannot move pass it. i need help

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>Tech Conference</h3>
            <p>A gathering of developers and tech enthusiasts to explore new innovations.<br /><strong>DATE:</strong><time datetime="2025-8-22">August 22, 2025</time></p>
          </article>
          <article>
            <h3>Community Cleanup</h3>
            <p>Join volunteers to help clean and improve our local parks and streets.<br /><strong>DATE:</strong><time datetime="2025-9-5">September 5, 2025</time></p>
          </article>
      </section>

      <section id="past-events">
         <h2>Past Events<h2>
          <article>
            <h3>Music Festival</h3>
            <p>An amazing outdoor festival filled with live music and performances.</p>
            <img src="event1.jpg" alt="Crowd enjoying a music festival">
          </article>
          <article>
            <h3>Art Exhibition</h3>
            <p>Local artists displayed creative artworks in a gallery setting.</p>
            <img src="event2.jpg" alt="Visitors viewing artwork in an exhibition">
          </article>
      </section>
    </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 Edg/148.0.0.0

Challenge Information:

Build an Event Hub - Build an Event Hub

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-event-hub/66ebd4ae2812430bb883c787.md at main · freeCodeCamp/freeCodeCamp · GitHub

Watch for capitalization in your #upcoming-events section in your h2 element and watch for closing tag in your h2 element in #past-events section.

Thank you that got number 16 fix. i also need help with this:-

Inside the #past-events section, you should have two article elements below the h2 element.