Build an Event Hub - Build an Event Hub

Tell us what’s happening:

Step 4 and 5 seem to be the problem with my code. I’ve gone through everything but I’m not sure what I’m missing.

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>SEO Strategy Webinar</h3>
          <p>Join us to discuss the current state of SEO and new AEO/GEO trends on the horizon.</P>

        </article>

        <article>
          <h3>AEO/GEO Workshop</h3>
          <p>Come join us as we learn how to work with AI tools and optimize for AEO and GEO.</p>

        </article>

      </section>

      <section id="past-events">
        <h2>Past Events</h2>
        <article>
          <h3>Introduction to web crawlers.</h3>
          <p>Join us as we discuss how to make your website easily findable my web crawlers.</p>
          <img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="A running computer mounted on top a desktop"/>
        </article>

        <article>
          <h3>Decoding Parasite SEO Webinar</h3>
          <p>Learn how to prevent the costly mistake that chips away at blog value.</p>
          <img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="an image of data">
        </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/151.0.0.0 Safari/537.36 Edg/151.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

Hi @Remesuperstar,

Is your h1 element closed correctly?

Until you’re more comfortalbe with HTML, you can use this HTML Validator to check your code.

Happy coding

Thank you. That would help.