forked from SohamJuneja/OpenSourceDSC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
93 lines (84 loc) · 3.1 KB
/
gallery.html
File metadata and controls
93 lines (84 loc) · 3.1 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Gallery - Tech Club</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.png">
</div>
<nav 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>
</nav>
<button id="dark-mode-toggle">Dark Mode</button>
</header>
<div class="gallery-header">
<h1>Our Event Gallery</h1>
<p>Memories from our past events and activities</p>
<div class="gallery-filters">
<span class="active" onclick="filterGallery('all')">All</span>
<span onclick="filterGallery('hackathon')">Hackathons</span>
<span onclick="filterGallery('workshop')">Workshops</span>
<span onclick="filterGallery('social')">Social Events</span>
</div>
</div>
<div class="gallery-container">
<p class="empty-gallery">Loading gallery images...</p>
</div>
<div id="lightbox" class="lightbox">
<span class="close-lightbox">×</span>
<img class="lightbox-content" id="lightbox-img">
<div id="lightbox-caption"></div>
</div>
<div class="upload-section">
<h2>Share Your Photos</h2>
<p>Have photos from our events? Share them with the community!</p>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<select>
<option value="">-- Select Event --</option>
<option value="hackathon">Hackathon 2024</option>
<option value="workshop">Python Workshop</option>
<option value="social">End of Year Party</option>
</select>
<input type="file" accept="image/*">
<button type="submit">Upload</button>
</form>
</div>
<footer>
<div class="footer-col">
<h3>Tech Club</h3>
<p>Fostering innovation and community among tech enthusiasts.</p>
</div>
<div class="footer-col">
<h3>Quick Links</h3>
<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="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Contact Us</h3>
<p>Email: info@techclub.edu</p>
<p>Location: Tech Building, Room 101</p>
</div>
<div class="copyright">
<p>© Tech Club 2025. All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>