What am I doing wrong?

<!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>iPhone Release</h3>
    <p>This phone is a first. The first phone to look this good. The first phone to perform this well. The first phone to...You get the picture. Be there or be square.<p>
     </article> 
     <article>
     <h3>iPod Touch Announcement</h3>    
     <p>You loved the iPhone...now get ready for the next iPod! The iPod touch, taking inspiration from the iPhone combines the iPod you love, with the touchscreen, well, you also love!</p>
     </article>
<section>

<section id="past-events">
    <h2>Past Events</h2>
    <article>
        <h3>iMac G3 Launch</h3>
        <p>This was awesome. Too bad you weren't there. Or maybe you were. Have a picture</p>
        <img src="https://guide-images.cdn.ifixit.com/igi/das6GOybDFuEtsfT.medium">
    </article>

    <article>
        <h3>iPod</h3>
        <p>1000 songs in your pocket. What more can I say?</p>
        <img src="https://cdn10.bigcommerce.com/s-j897kmotiv/products/944/images/2248/iPod-2001__98078.1606009850.380.570.jpg?c=2">
    </article>
</section>        
</main>
</body>

</html>

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

1 Like
  • Make sure you have properly closed all the elements.

  • You must give each image an alt attribute.


If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like