Tell us what’s happening:
Claims my p element of the second article in the Upcoming events section should have the event description. Where is the problem with the following:
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>Full-stack programming</h3>
<p>"Welcome to our Full-Stack Programming Curriculum event! We're excited to have you embark on this journey of mastering both front-end and back-end development. Over the course of this program, you'll gain hands-on experience with essential technologies, build real-world projects, and collaborate with fellow learners. Whether you're just starting or looking to enhance your skills, this event is designed to empower you with the knowledge and confidence to excel in the world of web development. Let's code, learn, and grow together!"</p>
</article>
<article>
<h3>Cloud Computing and Internet of things</h3>
<p>Our module entails informing differrent platforms to get to know about different trends in cloud computing and Internet of Things where we invite you abroad to share with us.</p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>Operating System and Database Management</h3>
<p>Welcome to the Operating Systems and Database Management event! We are thrilled to have you join us as we explore the fundamentals and advanced concepts of these essential technologies. This event will provide valuable insights into system processes, memory management, database structures, and real-world applications, helping you build a strong foundation for your tech journey. Whether you're a beginner or looking to deepen your knowledge, this is a great opportunity to learn, network, and grow. Get ready for an exciting and informative experience—welcome aboard!<p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="">
</article>
<article>
<h3>Forex and Cryptocurrency</h3>
<p>Welcome to our Forex and Cryptocurrency event! We're thrilled to have you join us as we explore the exciting world of trading, market trends, and investment strategies. Whether you're a beginner or have some experience, this event will provide valuable insights, expert guidance, and networking opportunities to help you navigate the dynamic financial markets. Get ready to learn, connect, and take your first steps toward success in Forex and Crypto trading<p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="">
</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/133.0.0.0 Safari/537.36
Challenge Information:
Build an Event Hub - Build an Event Hub