-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.html
42 lines (38 loc) · 1.38 KB
/
event.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Innovanza Techfest - Events</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Innovanza Techfest</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Events</a></li>
<li><a href="about.html">About</a></li>
<li><a href="merchandise.html">Merchandise</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h2>Event Lineup</h2>
<section class="event">
<img src="hackathon.jpg" alt="Hackathon Event">
<h3>Hackathon</h3>
<p>A 24-hour coding challenge to push your limits. Date: [Date], Time: [Time], Location: [Location]</p>
<a href="#">Register Now</a>
</section>
<section class="event">
<img src="workshop.jpg" alt="Machine Learning Workshop">
<h3>Workshop: Machine Learning</h3>
<p>Get insights into the world of AI and Machine Learning. Date: [Date], Time: [Time], Location: [Location]</p>
<a href="#">Register Now</a>
</section>
</main>
</body>
</html>