forked from gdgc-rgb/Task-2-PR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.75 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest 2025 - Participants</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>🎃 Hacktoberfest 2025</h1>
<p class="subtitle">Celebrating Open Source Contributors</p>
</header>
<div class="search-container">
<input type="text" id="searchBar" placeholder="Search participants by name..." />
</div>
<div id="participantCards" class="cards-grid">
<!-- Participant cards will be generated here by JavaScript -->
<!-- EXAMPLE CARD STRUCTURE (for reference):
<div class="card">
<h2 class="participant-name">Your Name</h2>
<div class="participant-info">
<p><strong>Roll No:</strong> Your Roll Number</p>
<p><strong>Year:</strong> Your Year</p>
<p><strong>Branch:</strong> Your Branch</p>
</div>
<div class="social-links">
<a href="YOUR_GITHUB_URL_HERE" target="_blank" class="link-btn github-btn">
<span class="icon">🔗</span> GitHub
</a>
<a href="YOUR_LINKEDIN_URL_HERE" target="_blank" class="link-btn linkedin-btn">
<span class="icon">🔗</span> LinkedIn
</a>
</div>
</div>
-->
</div>
<footer>
<p>Made with ❤️ for Hacktoberfest 2025</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>