Build an Event Hub - Build an Event Hub

Tell us what’s happening:

i have written the code like 10 times now and whenever i give it to be run there is this test i fail almost everytime that i dont add a paragraph as a description i dont know what to do now from here

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>
                    <dl>
                        <dt><h3>Agent Development Kit Hackathon with Google Cloud</h3></dt>
                        <dd>Jun 24, 2025 @ 5:00am</dd>
                    </dl>
                    <img src="https://cdn.pixabay.com/photo/2023/04/07/23/21/bridge-7907835_1280.jpg" alt="Developers collaborating at a hackathon" style="height:100px;">
                    <p>
                        Participate in a hands-on hackathon focused on Google's Agent Development Kit. Collaborate with fellow developers, learn from Google Cloud experts, and compete for exciting prizes.
                    </p>
                </article>
                <article>
                    <dl>
                        <dt><h3>Google Cloud Summit Süd 2025 in München</h3></dt>
                        <dd>Apr 24, 2025 @ 5:00am</dd>
                    </dl>
                    <img src="https://cdn.pixabay.com/photo/2019/06/28/20/22/bridge-4304946_1280.jpg" alt="Munich city bridge at sunset" style="height:100px;">
                    <p>
                        Join industry leaders and cloud professionals in Munich for the Google Cloud Summit Süd 2025. Experience keynote sessions, technical workshops, and networking opportunities.
                    </p>
                </article>
            </section>
            <section id="past-events">
                <h2>Past Events</h2>
                <article>
                    <dl>
                        <dt><h3>Agent Development Kit Hackathon with Google Cloud</h3></dt>
                        <dd>Jun 24, 2025 @ 5:00am</dd>
                    </dl>
                    <img src="https://cdn.pixabay.com/photo/2023/04/07/23/21/bridge-7907835_1280.jpg" alt="Developers collaborating at a hackathon" style="height:100px;">
                    <p>
                        Developers gathered to build innovative solutions using Google's Agent Development Kit, collaborating on cloud-based projects and networking with industry experts.
                    </p>
                </article>
                <article>
                    <dl>
                        <dt><h3>Google Cloud Summit Süd 2025 in München</h3></dt>
                        <dd>Apr 24, 2025 @ 5:00am</dd>
                    </dl>
                    <img src="https://cdn.pixabay.com/photo/2019/06/28/20/22/bridge-4304946_1280.jpg" alt="Munich city bridge at sunset" style="height:100px;">
                    <p>
                        The summit featured keynotes from Google engineers, hands-on labs, and sessions on the latest cloud technologies, attracting IT professionals from across Europe.
                    </p>
                </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/134.0.0.0 Safari/537.36 OPR/119.0.0.0

Challenge Information:

Build an Event Hub - Build an Event Hub

hello and welcome to fcc forum :slight_smile:

  • bring out your “h3” out of there, as in from all “article” elements and try again

happy coding :slight_smile: