Build an Event Hub - Build an Event Hub

Tell us what’s happening:

  1. Both of the article elements inside the #upcoming-events section should have a paragraph element for the event description. Fails

I was pretty sure I had it right.
I re-typed the entire “upcoming events” section once. Nothing
I copy pasted my “past events” section (which passes) up top changing the naming and still nothing.

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</h3>
      <article>
          <h3>Karaoke Night!</h3>
          <img src="https://cdn.mos.cms.futurecdn.net/7qYc6jWRZSx5cwCNEw85xj.jpg" Height="200" Alt="Karaoke Night!">
          <p>scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho buenov scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno</p>
      </article>
      <article>
          <h3>Blackout Saturday!</h3>
          <img src="https://weezevent.com/wp-content/uploads/2019/01/12145054/organiser-soiree-1000x585.jpg" Height="200" Alt="Party">
          <p>scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno</p>
      </article>
    </section>
    <section id="past-events">
      <h2>Past Events</h3>
      <article>
          <h3>Karaoke Night!</h3>
          <img src="https://cdn.mos.cms.futurecdn.net/7qYc6jWRZSx5cwCNEw85xj.jpg" Height="200" Alt="Karaoke Night!">
          <p>scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho buenov scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno</p>
      </article>
      <article>
          <h3>Blackout Saturday!</h3>
          <img src="https://weezevent.com/wp-content/uploads/2019/01/12145054/organiser-soiree-1000x585.jpg" Height="200" Alt="Party">
          <p>scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno scrumbydi bumbide slippy poo bag chicken nugets for brekky is mucho bueno</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/136.0.0.0 Safari/537.36

Challenge Information:

Build an Event Hub - Build an Event Hub

you have an issue here to start

the tests expect that the p element is immediately after the h3

this is going to be changed in a future update

Yep that did it. Legend. Thank you