FOSSEE Proponent Symposium / National FOSSEE Awards 2025
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
}
.tab-container {
width: 100%;
}
.tab-buttons {
display: flex;
border-bottom: 2px solid #ccc;
margin-bottom: 10px;
}
.tab-buttons button {
flex: 1;
padding: 10px;
background-color: #eee;
border: none;
cursor: pointer;
font-size: 15px;
transition: 0.3s;
}
.tab-buttons button:hover,
.tab-buttons button.active {
background-color: #ccc;
font-weight: bold;
}
.tab-content {
display: none;
padding: 15px;
background-color: #fff;
border: 1px solid #ccc;
}
.tab-content.active {
display: block;
}
table, td, thead, th {
border: 1px solid black;
}
.panel table {
border-collapse: collapse;
border-spacing: 0;
width: 100% !important;
}
th {
border-bottom: 1px solid black !important;
}
</style>
<body>
<p><strong>FOSSEE Proponent Symposium / National FOSSEE Awards 2025: Celebrating India’s excellence in open source education and outreach</strong></p>
<div class="tab-container">
<div class="tab-buttons">
<button class="tab-btn active" data-tab="tab1">FOSSEE Proponent Symposium</button>
<button class="tab-btn" data-tab="tab2">National FOSSEE Awards 2025</button>
<button class="tab-btn" data-tab="tab3">Award Categories</button>
</div>
<div id="tab1" class="tab-content active">
<p style="text-align:justify">The FOSSEE Proponent Symposium is an event to bring together the FOSSEE contributors, mentors, and other FLOSS enthusiasts...</p>
<p><strong>Date</strong>: 6 May 2025</p>
<p><strong>Venue</strong>: VMCC Auditorium, IIT Bombay, Powai, Mumbai.</p>
<p>Why should you attend this Symposium?</p>
<ul>
<li>Opportunity to engage in meaningful discussions...</li>
<li>Honor the incredible efforts...</li>
<li>Sessions on NEP 2022 guidelines...</li>
</ul>
</div>
<div id="tab2" class="tab-content">
<p><strong>Celebrating Excellence: FOSSEE Awards 2025</strong></p>
<p style="text-align:justify">In this symposium, we shall also have a grand FOSSEE Awards Ceremony...</p>
<p><strong>Selection Criteria </strong></p>
<ol>
<li>3 or more contributions from a student, faculty, or institute.</li>
<li>Using FOSSEE-supported software in their institute.</li>
<li>Including FOSSEE-supported software in the curriculum.</li>
<li>Significant contribution to any FOSSEE-supported software.</li>
<li>FOSSEE Clubs who have extensively promoted FOSSEE-supported software and its activities.</li>
</ol>
<p><strong>The award ceremony will be held at IIT Bombay on 6 May 2025. </strong></p>
</div>
<div id="tab3" class="tab-content">
<p><strong>Award Categories:</strong></p>
<table class="table table-responsive">
<thead class="thead-dark">
<tr>
<th><strong>Category</strong></th>
<th><strong>Description</strong></th>
<th><strong>Selection criteria</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>Emerging Talent in Open Source</td>
<td>Given to the outstanding student contributor(s)</td>
<td>FOSSEE fellow / intern with outstanding contributions</td>
</tr>
<tr>
<td>Outstanding Contributor Award</td>
<td>This award will be given to a contributor who has contributed the most to FOSSEE.</td>
<td>3 or more contributions from a student, faculty, or institute.</td>
</tr>
<tr>
<td>Mentor of the Year</td>
<td>This award will be given to the FOSSEE Faculty partners</td>
<td>Mentored the most FOSSEE interns/fellows.</td>
</tr>
<tr>
<td>Community Impact Award</td>
<td>Institution that made a difference by their contribution(s) to open source.</td>
<td>Using FOSSEE-supported software in their institute.</td>
</tr>
<tr>
<td>Pioneer in Open Source Excellence</td>
<td>Given to someone using FOSSEE resources independently.</td>
<td>Significant contribution to any FOSSEE-supported software.</td>
</tr>
</tbody>
</table>
<p><a href="https://docs.google.com/forms/d/e/1FAIpQLSfcZH1cM1fpMsC_lK251IW8qnK9-SwYDSm9wg6LN2rvgp3sZA/viewform" target="_blank">
Nomination form for National FOSSEE Awards 2025</a></p>
<p>Read before filling the form:</p>
<ol>
<li>FOSSEE contributors</li>
<li>Non-FOSSEE contributors interested in applying</li>
<li>Faculty/Institutes using FOSSEE-supported software but not contributed</li>
</ol>
<p>Note: Awardees will be shortlisted from contributors and FOSS-using institutions. Non-FOSSEE contributors will be guided post submission.</p>
</div>
</div>
<script>
const tabButtons = document.querySelectorAll(".tab-btn");
const tabContents = document.querySelectorAll(".tab-content");
tabButtons.forEach(btn => {
btn.addEventListener("click", () => {
tabButtons.forEach(b => b.classList.remove("active"));
tabContents.forEach(tab => tab.classList.remove("active"));
btn.classList.add("active");
document.getElementById(btn.dataset.tab).classList.add("active");
});
});
</script>