Tell us what’s happening:
Error is You should have a main element after the header element closing tag. I tried 3 times.
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>swimming</h3>
<p></p>
<article>
<article>
<h3>Basketball</h3>
<p></p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>Ran<h3>
<p></p>
<img src="" alt="">
</article>
<article>
<h3>swam</h3>
<p></p>
<img src="" alt="">
</section>
</main>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Mobile Safari/537.36
Challenge Information:
Build an Event Hub - Build an Event Hub