-
Notifications
You must be signed in to change notification settings - Fork 2
/
contributor.html
92 lines (86 loc) · 3.28 KB
/
contributor.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contributor Page</title>
<link rel="stylesheet" href="contributor.css">
</head>
<body>
<h1>Our Team</h1>
<!-- Project Lead Section -->
<div class="section lead-section">
<div class="lead-card">
<div class="circle-image">
<img src="shashwat.jpeg" alt="Shashwat's Photo">
</div>
<div class="content">
<h3>Shashwat Upadhyay</h3>
<p>Shashwat is the project lead who oversees the entire project, ensuring progress and quality. With a keen eye for detail, Shashwat drives the vision of this initiative.</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/shashwat-upadhyay-13abb020b/"><img src="linkedin.png" alt="LinkedIn"></a>
<a href="https://www.github.com/shashwatology/"><img src="github.png" alt="GitHub"></a>
<a href="https://www.instagram.com/_shashwatology/"><img src="instagram.png" alt="Instagram"></a>
</div>
</div>
</div>
</div>
<!-- Contributors Section -->
<div class="section">
<h2>Contributors</h2>
<div class="card-container">
<!-- Ritesh's Card -->
<div class="card">
<div class="circle-image">
<img src="ritesh.jpg" alt="Ritesh's Photo">
</div>
<div class="content">
<h3>Ritesh Sah</h3> <br>
<div id="studentbio ">
<p>Student at IIT Madras </p>
</div>
<p>Ritesh is a contributor passionate about development and innovation. He is instrumental in turning ideas into reality.</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/ritesh-sah-0901a62a1/"><img src="linkedin.png" alt="LinkedIn"></a>
<a href="https://github.com/riteshsah235"><img src="github.png" alt="GitHub"></a>
<a href="https://www.instagram.com/ritesh_kanti/?__pwa=1"><img src="instagram.png" alt="Instagram"></a>
</div>
</div>
</div>
<!-- Be the Next Contributor Card -->
<div class="card next-contributor">
<div class="circle-placeholder">
<img style="width: 4cm; height: 2cm;" src="You.png" alt="You">
</div>
<h3>Be the Next Contributor</h3>
<a href="https://forms.gle/qiQwsyhdDSGup4v19" class="btn">Join Now</a>
</div>
</div>
</div>
<!-- Mode Toggle -->
<div class="mode-toggle">
<button id="mode-button">Switch Theme </button>
</div>
<script>
// Mode Toggle
const modeButton = document.getElementById('mode-button');
let mode = "light";
modeButton.addEventListener("click", () => {
const body = document.body;
if (mode === "light") {
body.classList.remove("light-mode");
body.classList.add("dark-mode");
mode = "dark";
} else if (mode === "dark") {
body.classList.remove("dark-mode");
body.classList.add("gradient-mode");
mode = "gradient";
} else {
body.classList.remove("gradient-mode");
body.classList.add("light-mode");
mode = "light";
}
});
</script>
</body>
</html>