It says both articles in my “#upcoming-events” section need a paragraph element in them, as far as I can tell I have a p element in both and a closing /p element as well, and I can’t figure out why it’s failing, please help!
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>Cookie Day</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQdyH3LVEFW8paFqPCLPmxVnHWsoguQexCCMA&s" alt="Plate of cookies" width="500" height="250">
<p>Cookie day is a one time event where we will make many types of cookies throughout the day for you to try. After all the cookies have been tried, there will be a vote to determine the top 5 cookies that will be on our new menu</p>
<p><time datetime="2025-05-25T09:00"> May 25 at 9am</time>
</article>
<article>
<h3>Opening Day</h3>
<img src="https://a.storyblok.com/f/267449/4271x2851/a180e87ab1/yeh-xintong-go3dt3ppiw4-unsplash-1.jpg" alt="bakery" width="500" height="250">
<p>We are excited to announce that we will be opening a shop where you can get a variety of our treats! We have been working super hard and are very happy to have reached our goal!</p>
<p><time datetime="2025-08-17T12:00"> August 17 at noon!</time>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>Farmers Market</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnkkCmBthPFJOkatfwFSyASEC6fTMQg1cfLQ&s" alt="farmers market" width="500" height="250">
<p>We will be at the Fruita Farmers Market all day on sunday, and we will have a large variety of snacks for you to try</p>
<p><time datetime="2025-06-08T10:00">June 08 at 10am</time>
</article>
<article>
<h3>Brownies at the Park</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtG5ugdO9MfffxhfLnPkl31svGQEleKAmc2Q&s" alt="park" width="500" height="250">
<p>We're selling brownies at canyon view park, come see us for a sweet treat</p>
<p><time datetime="2025-04-22T14:00">April 22 at 2pm</time>
</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
Im on phone so its hard to see everything…if no one answered I can take a better look at my computer a little later. Although, just glancing I see you are missing closing paragraph tags in a few places
<!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>Cookie Day</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQdyH3LVEFW8paFqPCLPmxVnHWsoguQexCCMA&s" alt="Plate of cookies" width="500" height="250">
<p>Cookie day is a one time event where we will make many types of cookies throughout the day for you to try. After all the cookies have been tried, there will be a vote to determine the top 5 cookies that will be on our new menu</p>
<p><time datetime="2025-05-25T09:00"> May 25 at 9am</time></p>
</article>
<article>
<h3>Opening Day</h3>
<img src="https://a.storyblok.com/f/267449/4271x2851/a180e87ab1/yeh-xintong-go3dt3ppiw4-unsplash-1.jpg" alt="bakery" width="500" height="250">
<p>We are excited to announce that we will be opening a shop where you can get a variety of our treats! We have been working super hard and are very happy to have reached our goal!</p>
<p><time datetime="2025-08-17T12:00"> August 17 at noon!</time></p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>Farmers Market</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnkkCmBthPFJOkatfwFSyASEC6fTMQg1cfLQ&s" alt="farmers market" width="500" height="250">
<p>We will be at the Fruita Farmers Market all day on sunday, and we will have a large variety of snacks for you to try</p>
<p><time datetime="2025-06-08T10:00">June 08 at 10am</time></p>
</article>
<article>
<h3>Brownies at the Park</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtG5ugdO9MfffxhfLnPkl31svGQEleKAmc2Q&s" alt="park" width="500" height="250">
<p>We're selling brownies at canyon view park, come see us for a sweet treat</p>
<p><time datetime="2025-04-22T14:00">April 22 at 2pm</time></p>
</article>
</section>
</main>
</body>
</html>type or paste code here