Tell us what’s happening:
I feel like its just some slight issue with how I’ve placed the code. The check list is extremely vague and isn’t enough information to help me see where I’m making the mistake.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pet Parties Event Hub</title>
</head>
<body>
<header>
<h1>Event Hub</h1>
</header>
<nav>
<ul>
<li>
<a href="#upcoming-events">Upcoming Events</a></li>
<li>
<a hre
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pet Parties Event Hub</title>
</head>
<body>
<header>
<h1>Event Hub</h1>
</header>
<nav>
<ul>
<li>
<a href="#upcoming-events">Upcoming Events</a></li>
<li>
<a href="#past-events">Past Events</a></li>
</ul>
</nav>
<main>
<section id="upcoming-events">
<h2>Upcoming Events</h2>
<article><h3>Puppy Parade</h3>
<p>Description</p></article>
<article>
<h3>Kitten Cafe Night</h3>
<p>Description</p>
</article>
</section>
<section id ="past-events">
<h2>Past Events</h2>
<article>
<h3> Turtle Trott</h3>
<p>Description </p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="fun">
</article>
<article>
<h3>Bird Buddies </h3>
<p>Description</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="games">
</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/135.0.0.0 Safari/537.36
Challenge Information:
Build an Event Hub - Build an Event Hub