mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 17:09:59 +01:00
finished event hub exercise
This commit is contained in:
parent
a0c3808aaf
commit
234cca9d55
1 changed files with 35 additions and 2 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue