finished event hub exercise

This commit is contained in:
bendwit 2025-06-17 11:41:26 +02:00
parent a0c3808aaf
commit 234cca9d55

View file

@ -6,7 +6,40 @@
</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>title 1</h3>
<p>im lazy :p</p>
</article>
<article>
<h3>title 2</h3>
<p>filler texxt</p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>retromeet</h3>
<p>A Meting event for lovers of retro computing.</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="">
</article>
<article>
<h3>engineerscon</h3>
<p>Convention for engineers.</p>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="">
</article>
</section>
</main>
</body>
</html>