Tell us what’s happening:
“The text of the second item in the unordered list should be Past Events.”, although this has been indicated, I can not seem to see what I am missing. Can someone assist?
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>New World in Computing</h3>
<p>The world we live in keeps bringing us challenges, however, a new world can be integrated through modern computing. Come join us as we discover the new world in computing.</p>
<p>Date: <time datetime="2026-08-16T15:00">16 August 2026</time>
</p>
</article>
<article>
<h3>AI Awareness</h3>
<p>Let's not forget artificial intelligence in this new era of computing. You are all welcome to come browse through our latest developments.</p>
<p>Date: <time datetime="2026-07-12T16:00">12 July 2026</time></p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>YesterYear in Computing</h3>
<p>We went back to the beginning, where it all started. These were the early developments brought to the world.</p>
<p>Date: <time datetime="2026-02-04T14:00">04 February 2026</time></p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="Remember floppy disc's">
</article>
<article>
<h3>Before We Got Here</h3>
<p>How did we crack this enigma? All these and more questions would have been reviewed in this event.</p>
<p>Date: <time datetime="2026-03-09T15:00">09 March 2026</time></p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="Were it all started">
</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/148.0.0.0 Safari/537.36
Challenge Information:
Build an Event Hub - Build an Event Hub