Tell us what’s happening:
Hi , I need help getting the code to pass regarding steps 27 h3 element and 28 p element, thanks.
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></h3>
<p></p>
</article>
<article>
<h3></h3>
<p></p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>past-event1</h3>
<p>Details 1</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="computer">
</article>
<article>
<h3>past-event2</h3>
<p>Details 2</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="blocks">
</article>
</section>
</main>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build an Event Hub - Build an Event Hub