Build an Event Hub - Build an Event Hubevent hub

Tell us what’s happening:

hi, doing the event hub and got a h3 heading. not liking that. only 2 errors. what am i doing wrong. can you help. marvin.

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</h3>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: <date datetime="10-08-2024">August 10, 2024</date></p>
    </article>
    <article>
        <h3>Web Development Bootcamp</h3>
        <p>A hands-on workshop designed for developers looking to enhance their skills in modern web technologies including React,Node.js, and GraphQL. Perfect or both beginners and experienced developers.</p>
        <p>Date: <date datetime="5-09-2024">September 5, 2024</date></p>
    </article>
        </section>
        <section id="past-events">
                <h2>Past Events</h2>
        <h3>Cybersecurity Summit 2024</h3>
        <article>
        <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: <date datetime="15-06-2024">June 15, 2024</date></p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="Image from Cybersecurity Summit 2024"> />
    </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.</p>
        <p>Date: <date datetime="24-07-2024">July 24, 2024</date></p>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="Image from Blockchain Expo 2024" />
            </article>
</main>
    </body>
</html>
<!DOCTYPE html>
<html lang="en">

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

<body>

</body>

</html>

Your browser information:

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

Challenge Information:

Build an Event Hub - Build an Event Hub
https://www.freecodecamp.org/learn/full-stack-developer/lab-event-hub/lab-event-hubhi, doing the event hub project. now only got 2 errors left. will paste the two errors and then my code. what am i doing wrong. says i dont have a h3 heading, but i do. help.
ps: pasting below.

Failed:22. Both of the article elements inside the #past-events section should have an h3 element for the event title.

Event Hub

Event Hub

Upcoming Events

AI & Machine Learning Conference

h3>

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.

Date: August 10, 2024

Web Development Bootcamp

A hands-on workshop designed for developers looking to enhance their skills in modern web technologies including React,Node.js, and GraphQL. Perfect or both beginners and experienced developers.

Date: September 5, 2024

Past Events

Cybersecurity Summit 2024

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.

Date: June 15, 2024

Image from Cybersecurity Summit 2024 />

Blockchain Expo 2024

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 24, 2024

Image from Blockchain Expo 2024

in #past-events the first article does not contain an h3, instead the h3 is before the article