-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab-event-hub.html
More file actions
56 lines (50 loc) · 2.26 KB
/
lab-event-hub.html
File metadata and controls
56 lines (50 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
** start of index.html **
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Event Hub</title>
</head>
<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>Digital Innovation Forum 2025</h3>
<p>Discover how emerging tech is revolutionizing industries—from augmented reality to quantum computing. Hear from disruptors shaping the future of digital innovation.</p>
<time datetime="25-06-15T15:00">June 15th 2025 at 03:00pm CST</time>
</article>
<article>
<h3>Remote Work & Productivity Summit</h3>
<p>Explore tools, strategies, and cultural shifts transforming how we work remotely. Ideal for freelancers, team leaders, and digital nomads seeking peak efficiency.</p>
<time datetime="25-06-16T13:30">June 16th 2025 at 01:30pm CST</time>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>GreenTECH Expo 2025</h3>
<p>This event showcased sustainable technology and eco-conscious business practices. Speakers addressed clean energy, waste reduction, and green startups.</p>
<time datetime="25-03-10">March 10th 2025</time><br></br>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event1.jpg" alt="green computer">
</article>
<article>
<h3>Voice UX Design Conference 2025</h3>
<p>A unique gathering focused on designing for voice interfaces. Topics ranged from conversational AI to accessibility in voice-driven applications.</p>
<time datetime="25-03-09"> March 9th 2025</time>
<img src="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg" alt="voice ux design conference picture">
</article>
</section>
</main>
<body>
</body>
</html>
** end of index.html **