-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
375 lines (326 loc) · 9.92 KB
/
Copy pathindex.html
File metadata and controls
375 lines (326 loc) · 9.92 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Prasad Kale | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #f5f5f5;
--text-color: #001f3f;
--card-bg: white;
--accent-color: #ff4136;
--navy: #001f3f;
--red: #ff4136;
--font-main: 'Poppins', sans-serif;
}
body.dark-mode {
--bg-color: #0a0a23;
--text-color: #f0f0f0;
--card-bg: #1f1f2e;
--accent-color: #ff6b61;
}
body {
margin: 0;
font-family: var(--font-main);
background: var(--bg-color);
color: var(--text-color);
transition: 0.3s;
}
header {
background: var(--navy);
color: white;
text-align: center;
padding: 60px 20px 40px;
position: relative;
}
#toggle-btn {
position: absolute;
top: 20px;
right: 20px;
background: var(--red);
color: white;
border: none;
padding: 10px 20px;
border-radius: 30px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
transition: 0.3s;
}
#toggle-btn:hover {
background: white;
color: var(--red);
border: 2px solid var(--red);
}
.container {
max-width: 1000px;
margin: auto;
padding: 40px 20px;
}
h2 {
border-bottom: 3px solid var(--accent-color);
padding-bottom: 5px;
margin-top: 40px;
font-weight: 700;
letter-spacing: 1px;
}
.section {
margin-bottom: 30px;
background: var(--card-bg);
padding: 20px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
opacity: 0;
transform: translateY(40px);
transition: all 0.6s ease-out;
}
.section.visible {
opacity: 1;
transform: translateY(0);
}
ul {
padding-left: 20px;
}
.contact a {
color: #ffdede;
text-decoration: underline;
}
footer {
background: var(--navy);
color: #ccc;
text-align: center;
padding: 20px;
}
html {
scroll-behavior: smooth;
}
nav {
position: sticky;
top: 0;
background: var(--card-bg);
display: flex;
justify-content: center;
gap: 25px;
padding: 12px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
z-index: 999;
}
nav a {
color: var(--text-color);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.5px;
transition: 0.2s;
}
nav a:hover {
color: var(--accent-color);
}
form input, form textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 10px;
border: 1px solid #ccc;
font-family: var(--font-main);
}
form button {
background: var(--accent-color);
color: white;
border: none;
padding: 12px 24px;
cursor: pointer;
border-radius: 10px;
font-weight: bold;
font-size: 1rem;
}
.project-img {
width: 100%;
max-width: 400px;
height: auto;
border-radius: 10px;
margin-top: 10px;
display: block;
margin-left: auto;
margin-right: auto;
}
.resume-btn {
display: inline-block;
margin-top: 15px;
background: linear-gradient(45deg, var(--accent-color), var(--navy));
color: white;
padding: 12px 30px;
border-radius: 30px;
font-weight: bold;
text-decoration: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: 0.3s;
}
.resume-btn:hover {
background: linear-gradient(45deg, var(--navy), var(--accent-color));
transform: scale(1.05);
}
@media screen and (max-width: 600px) {
nav {
flex-direction: column;
gap: 10px;
}
}
/* 🔵 Custom Cursor Styles */
.custom-cursor {
position: fixed;
top: 0;
left: 0;
width: 8px;
height: 8px;
background-color: var(--accent-color);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%, -50%);
transition: none;
}
.cursor-trail {
position: fixed;
top: 0;
left: 0;
width: 14px; /* 👈 Smaller trail */
height: 14px;
border: 2px solid var(--accent-color);
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transform: translate(-50%, -50%);
}
/* More attractive text effects */
h1, p, li {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
h1 {
font-weight: 700;
font-size: 3.2rem;
letter-spacing: 1.5px;
}
p {
font-size: 1.2rem;
font-weight: 500;
}
</style>
</head>
<body>
<header>
<button id="toggle-btn">Dark Mode</button>
<h1>Prasad Kale</h1>
<p>ECE Student | Embedded Developer | Quizzing Enthusiast</p>
<p class="contact">📍 Nashik, Maharashtra ⋄ 📞 +91 8275083535 ⋄ <a href="mailto:kaleprasad55@gmail.com">kaleprasad55@gmail.com</a> ⋄ <a href="https://linkedin.com/in/prasad-kale-82872128" target="_blank">LinkedIn</a></p>
<a href="resume.docx" download class="resume-btn">📄 Download Resume</a>
</header>
<nav>
<a href="#education">Education</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#experience">Experience</a>
<a href="#activities">Activities</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<div class="section" id="education">
<h2>Education</h2>
<ul>
<li><strong>B. Tech, Electronics and Communication Engineering</strong><br>MIT WPU, Pune (2023 - 2027, CGPA: 8.10)</li>
<li><strong>Class XII</strong> - 73.17% (2022-2023), Atma Malik English Medium Gurukul</li>
<li><strong>Class X</strong> - 86.60% (2019-2020), Atma Malik English Medium Gurukul</li>
</ul>
</div>
<div class="section" id="skills">
<h2>Skills</h2>
<ul>
<li><strong>Programming:</strong> C, C++, Embedded C, Assembly Language</li>
<li><strong>Tools:</strong> Git, GitHub, VS Code, Multisim, Keilµvision</li>
<li><strong>Hardware:</strong> Arduino, 8051 Microcontroller</li>
<li><strong>Soft Skills:</strong> Critical Thinking, Communication, Attention to Detail, Adaptability</li>
</ul>
</div>
<div class="section" id="projects">
<h2>Projects</h2>
<ul>
<li><strong>Ultrasonic Radar System</strong><br>Arduino, servo motor & ultrasonic sensor with real-time visualization via Processing IDE.<br>
<img src="ultrasonic radar.jpg" alt="Ultrasonic Radar" class="project-img" /></li>
<li><strong>RFID-Based Attendance System</strong><br>Arduino, RC522 module, and database for secure, timestamped attendance logging.<br>
<img src="RFID.jpg" alt="RFID System" class="project-img" /></li>
</ul>
</div>
<div class="section" id="experience">
<h2>Experience</h2>
<ul>
<li><strong>President</strong> – Computer Club, Sheiling House (2020 - 2022)</li>
<li><strong>Chief Coordinator</strong> – English Literary Club, Sheiling House (2021 - 2022)</li>
<li><strong>Founder & President</strong> – Quizzing Club, Sheiling House (2018 - 2022)</li>
</ul>
</div>
<div class="section" id="activities">
<h2>Extra-Curriculars</h2>
<ul>
<li>Volunteered at <strong>Vivekananda Samiti</strong> to teach underprivileged children and fundraise for their education</li>
<li>Passionate about <strong>quizzing</strong>. Winner of multiple national-level competitions.</li>
</ul>
</div>
<div class="section" id="contact">
<h2>Contact Me</h2>
<form action="https://formspree.io/f/mnnplqnb" method="POST">
<input type="text" name="name" placeholder="Your Name" required />
<input type="email" name="email" placeholder="Your Email" required />
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
</div>
<footer>
<p>© 2025 Prasad Kale. All rights reserved.</p>
</footer>
<script>
const toggleBtn = document.getElementById("toggle-btn");
toggleBtn.addEventListener("click", () => {
document.body.classList.toggle("dark-mode");
toggleBtn.textContent = document.body.classList.contains("dark-mode") ? "Light Mode" : "Dark Mode";
});
const cursor = document.createElement("div");
cursor.classList.add("custom-cursor");
document.body.appendChild(cursor);
const trail = document.createElement("div");
trail.classList.add("cursor-trail");
document.body.appendChild(trail);
let mouseX = 0, mouseY = 0;
let trailX = 0, trailY = 0;
document.addEventListener("mousemove", (e) => {
cursor.style.left = e.clientX + "px";
cursor.style.top = e.clientY + "px";
mouseX = e.clientX;
mouseY = e.clientY;
});
function animateTrail() {
const speed = 0.12;
trailX += (mouseX - trailX) * speed;
trailY += (mouseY - trailY) * speed;
trail.style.left = trailX + "px";
trail.style.top = trailY + "px";
requestAnimationFrame(animateTrail);
}
animateTrail();
const sections = document.querySelectorAll('.section');
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
sections.forEach(section => {
observer.observe(section);
});
</script>
</body>
</html>