-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclub.html
More file actions
103 lines (91 loc) · 4.7 KB
/
club.html
File metadata and controls
103 lines (91 loc) · 4.7 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
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="ICON.png">
<title>SHIRUPA_KAMAL</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bottomdiv.css">
<link rel="stylesheet" href="club.css">
</head>
<body>
<!-- Preloader Section -->
<div id="preloader">
<img src="LOGO.jpeg" id="logo" alt="Website Logo">
</div>
<!-- Main Content (Initially hidden) -->
< id="content">
<div class="top">
<a href="index.html" class="logo">
<img src="LOGO.jpeg" alt="Website Logo">
</a>
<nav class="nav">
<ul>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="certifications.html">Certifications</a></li>
<li><a href="profiles.html">Profiles</a></li>
<li><a href="club.html" style="background-color: #2C3A60; border-radius: 0.4rem; padding: 6px 12px; color: white; text-decoration: none; font-weight: 500;">Initiatives</a></li>
</ul>
</nav>
</div>
<div class="middle">
<section class="volunteer-section">
<h2 class="section-title">Volunteering & Leadership</h2>
<div class="volunteer-cards-container">
<!-- Card 1 -->
<div class="volunteer-card">
<h3 class="volunteer-role">Student Coordinator</h3>
<p class="volunteer-org">Tech Fest 2025 – B V Raju Institute of Technology</p>
<p class="volunteer-date">April 2025</p>
<p class="volunteer-desc">
Led a team of 20 volunteers to organize and execute the annual technical festival, managing logistics, communication, and event flow across 15+ activities.
</p>
</div>
<!-- Card 2 -->
<div class="volunteer-card">
<h3 class="volunteer-role">Volunteer</h3>
<p class="volunteer-org">Tech Fest 2023 – B V Raju Institute of Technology</p>
<p class="volunteer-date">December 2023</p>
<p class="volunteer-desc">
Supported event coordination and handled registrations, stage setup, and attendee assistance during the college's technical event.
</p>
</div>
<!-- Card 3 -->
<div class="volunteer-card">
<h3 class="volunteer-role">Volunteer – Street Cause Club</h3>
<p class="volunteer-org">National registered student-run NGO</p>
<p class="volunteer-date">2022 – Present</p>
<p class="volunteer-desc">
Participated in multiple social outreach programs, including donation drives and community clean-up initiatives focused on making local impact.
</p>
</div>
</div>
</section>
</div>
<div class="bottom">
<!-- Social Media Icons in the center -->
<div class="social-media">
<a href="https://in.linkedin.com/in/shirupa-kamal" target="_blank" class="social-icon">
<img src="Social Media B&W/Linked in.png" alt="LinkedIn">
</a>
<a href="https://github.com/Kamal-Shirupa" target="_blank" class="social-icon">
<img src="Social Media B&W/github-mark.png" alt="GitHub">
</a>
<a href="mailto:shirupakamal@gmail.com" class="social-icon">
<img src="Social Media B&W/Gmail.png" alt="Gmail">
</a>
<a href="https://www.instagram.com/sunnyshirupa/?igsh=MTdnMTB3MXV0d2hsYw%3D%3D#" target="_blank" class="social-icon">
<img src="Social Media B&W/Instagram.png" alt="Instagram">
</a>
<a href="tel:+917569259537" class="social-icon">
<img src="Social Media B&W/Phone.png" alt="Phone">
</a>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="app.js"></script>
</body>
</html>