forked from SohamJuneja/OpenSourceDSC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
70 lines (63 loc) · 2.29 KB
/
Copy pathevents.html
File metadata and controls
70 lines (63 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Events - Tech Club</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<header>
<div class="logo">Tech Club</div>
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>
<h1>Upcoming Events</h1>
<div class="events-container">
<div class="event-card">
<img src="images/event1.jpg">
<h3>Open Source Workshop</h3>
<p class="date">April 5, 2025</p>
<p class="location">Room 101, Tech Building</p>
<p>Learn how to contribute to open source projects</p>
<div class="register" onclick="register(1)">Register</div>
</div>
<div class="event-card">
<img src="images/event2.jpg">
<h3>Web Development Bootcamp</h3>
<p class="date">April 12, 2025</p>
<p class="location">Online</p>
<p>A beginner-friendly introduction to HTML, CSS and JavaScript</p>
<div class="register" onclick="register(2)">Register</div>
</div>
<div class="event-card">
<h3>AI Ethics Panel</h3>
<p class="date">April 20, 2025</p>
<p class="location">Auditorium</p>
<p>Join our discussion on the ethical implications of AI</p>
<div class="register" onclick="register(3)">Register</div>
</div>
</div>
<div class="propose-event">
<h2>Propose an Event</h2>
<form>
<input type="text" placeholder="Event Title">
<input type="text" placeholder="Date">
<input type="text" placeholder="Location">
<textarea placeholder="Description"></textarea>
<button type="submit">Submit</button>
</form>
</div>
<footer>
<p>© Tech Club 2025</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>