-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathindex.html
More file actions
505 lines (446 loc) · 16.1 KB
/
index.html
File metadata and controls
505 lines (446 loc) · 16.1 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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<style>
/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.about-content {
display: flex;
gap: 20px;
align-items: center;
text-align: left; /* Ensure text is aligned to the left */
}
.avatar {
width: 120px;
height: 120px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}
.avatar img {
width: 10px;
height: 10px;
}
.about-text {
flex: 1; /* Make the text take available space */
}
.about-buttons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 15px;
}
.about-buttons a {
display: flex;
align-items: center;
gap: 5px;
padding: 10px 20px;
border-radius: 5px;
border: 1px solid black;
color: black;
font-size: 14px;
transition: background-color 0.3s, color 0.3s;
}
.about-buttons a:hover {
background-color: black;
color: #fff;
}
body.dark .about-buttons a {
background-color: #FEBA01;
color: #000; /* Black text color */
border-color: #000; /* Black border */
}
body.dark .about-buttons a:hover {
background-color: white; /* Black background on hover */
color: black; /* White text on hover */
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f9;
color: #333;
transition: background-color 0.3s, color 0.3s;
}
body.dark {
background-color: #121212;
color: #d1d1d1;
}
a {
text-decoration: none;
color: inherit;
}
/* Scroll Progress Bar */
#progressBar {
height: 4px;
background-color:#FEBA01;
position: fixed;
top: 0;
left: 0;
width: 0;
z-index: 1000;
}
/* Header */
header {
background-color: #fff;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #ddd;
position: sticky;
top: 0;
z-index: 1000;
transition: background-color 0.3s;
}
header.dark {
background-color: #1f1f1f;
}
nav ul {
list-style: none;
display: flex;
gap:40px;
}
nav ul li button {
background: none;
border: none;
cursor: pointer;
font-size: 18px;
color: black;
transition: color 0.3s;
padding: 10px;
}
nav ul li button:hover {
color: black;
border-radius: 5px;
background-color: #FEBA01;
box-shadow: 2px 2px 5px gray;
}
.toggle-container {
position: relative;
width: 50px;
height: 25px;
background: #ddd;
border-radius: 25px;
cursor: pointer;
transition: background 0.3s;
}
.toggle-container.dark {
background: black;
}
.toggle-circle {
position: absolute;
top: 3px;
left: 3px;
width: 19px;
height: 19px;
background: #fff;
border-radius: 50%;
transition: left 0.3s;
}
.toggle-container.dark .toggle-circle {
left: 26px;
}
/* Main Content */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
padding: 50px;
margin: 20px auto;
width: 70%;
text-align: left;
transition: transform 0.3s, box-shadow 0.3s;
}
.dark .card {
background-color: #1f1f1f;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.skills-bar {
display: flex;
align-items: center;
gap: 10px;
margin: 15px 0;
position: relative;
}
.skills-bar label {
min-width: 100px;
font-weight: bold;
}
.bar-container {
flex: 1;
height: 20px;
background-color: #ddd;
position: relative;
border-radius: 5px;
overflow: hidden;
display: flex;
align-items: center;
}
.bar-container::after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: var(--fill);
background-color: #FEBA01;
border-radius: 5px;
z-index: 1;
transition: width 0.3s ease;
}
.percentage {
position: absolute;
right: 10px;
font-size: 12px;
font-weight: bold;
color: #333;
z-index: 2;
}
body.dark .bar-container::after {
background-color: #FEBA01; /* Yellow for dark mode */
}
.list-item {
margin: 10px 0;
}
.list-item strong {
font-weight: bold;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
background-color: #fff;
border-top: 1px solid #ddd;
}
.dark footer {
background-color: #1f1f1f;
}
/* Responsive */
@media (max-width: 768px) {
.card {
width: 90%;
}
header {
flex-direction: column;
align-items: flex-start;
}
nav ul {
flex-direction: column;
gap: 10px;
}
.about-content {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<!-- Scroll Progress Bar -->
<div id="progressBar"></div>
<!-- Header -->
<header>
<nav>
<ul>
<li><button onclick="scrollToSection('about')">About</button></li>
<li><button onclick="scrollToSection('experience')">Experience</button></li>
<li><button onclick="scrollToSection('projects')">Projects</button></li>
<li><button onclick="scrollToSection('education')">Education</button></li>
<li><button onclick="scrollToSection('skills')">Skills</button></li>
<li><button onclick="scrollToSection('contact')">Contact</button></li>
</ul>
</nav>
<div id="themeToggle" class="toggle-container">
<div class="toggle-circle"></div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<!-- About Section -->
<div class="card" id="about">
<div class="about-content">
<div class="">
<img src="KN_logo_Icon (1).png" height="120px" width="120px" alt="Priya Khairate">
</div>
<div class="about-text">
<h1>PRIYA KHAIRATE</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Perferendis doloremque sit,
pariatur similique sint quae dolorem animi iste corporis, impedit cumque, deleniti
earum ducimus velit ullam amet accusantium asperiores! Dolore quo
tenetur aliquam distinctio natus dolores minus minima odio? Beatae!</p>
</div>
</div>
<div class="about-buttons">
<a href="https://linkedin.com" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn" style="width: 16px;">
LinkedIn
</a>
<a href="https://github.com" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" alt="GitHub" style="width: 16px;">
GitHub
</a>
</div>
</div>
<!-- Experience Section -->
<div class="card" id="experience">
<h2>Work Experience</h2> <hr><br>
<p><strong> <li>KODNEST TECHNOLOGIES | Jan. 2024 - May 2024 </li></strong></p>
<p><i><strong>Software Developer</strong></i></p><br>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga architecto neque asperiores deleniti ex, maiores dolores porro! Voluptate, culpa veritatis?</p> <br>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Commodi necessitatibus at quas eius illo, dolore consectetur ipsa quis alias error, repudiandae voluptatum. Blanditiis nihil libero fugit odio a, pariatur dolore.</p>
</div>
<!-- Projects Section -->
<div class="card" id="projects">
<h2>Projects</h2><hr><br>
<li class="list-item;" >
<strong>eCOMMERCE MANAGEMENT SYSTEM</strong>
<i><p><u>Python, Django, HTML, CSS, JavaScript | Sep 2023 - Dec 2023</p></i></u> <br>
<li>Developed a comprehensive eCommerce platform using Django, Python, HTML5, CSS3, and JavaScript
that enables users to browse items, add products to their cart, and place orders seamlessly.</li>
<li>Implemented user authentication for secure login and registration, ensuring a personalized shopping
experience. The platform features an intuitive interface, allowing users to easily navigate through
categories and view product details.</li>
<li>Utilized SQLite as the database to efficiently store and manage product and user data.</li>
<li>Integrated payment gateway functionality for smooth transaction processing, enhancing overall user
satisfaction and engagement.</li>
</li><br><hr><hr><hr>
<li class="list-item">
<strong>Batch Processing</strong>
<p><i><u>Java, Spring Boot, RESTful, MySQL | July 2024 - Sep 2024</u></i></p><br>
<li><strong>Spring Batch Framework:</strong> Utilized Spring Batch to orchestrate and manage batch processing workflows,
allowing for the efficient insertion of records into the Database.
</li>
<li><strong>Scheduling:</strong> Integrated the execution of batch job to RESTful calls via file uploads</li>
<li><strong>Readers and Writers:</strong> Integrated item readers to read input data from various sources, such as files
or databases, and item writers to persist processed data.</li>
</li><br> <hr><hr><hr>
<li class="list-item">
<strong>RESPONSIVE UI</strong>
<p><u><i>HTML, CSS, JavaScript | Jan 2024 - Aug 2024 </i></u></p> <br>
<li>A collection of mini web applications showcasing various functionalities built using HTML, CSS, and
JavaScript. This repository includes a range of projects designed to demonstrate different aspects of web
development and interactive UI/UX design. Each project is aimed at providing hands-on experience with
frontend technologies and solving common web development challenges.</li>
</li>
</ul>
</div>
<!-- Education Section -->
<div class="card" id="education">
<h2>Education</h2><hr><br>
<ul>
<li><strong>Degree:</strong> Bachelor of Engineering in Electrical Engineering<br><strong>Year:</strong> 2020<br><strong>CGPA:</strong>9.6</li> <br>
<li><strong>Diploma:</strong> In Electrical Engineering<br><strong>Year:</strong> 2017<br><strong>Percentage:</strong> 84%</li><br>
</ul>
</div>
<!-- Skills Section -->
<div class="card" id="skills">
<h2>Skills</h2>
<hr><br>
<div class="skills-bar">
<label>Java</label>
<span class="bar-container" style="--fill: 50%;">
<span class="percentage">80%</span>
</span>
</div>
<div class="skills-bar">
<label>Python</label>
<span class="bar-container" style="--fill: 75%;">
<span class="percentage">75%</span>
</span>
</div>
<div class="skills-bar">
<label>HTML5,CSS3 </label>
<span class="bar-container" style="--fill: 80%;">
<span class="percentage">80%</span>
</span>
</div>
<div class="skills-bar">
<label>JavaScript</label>
<span class="bar-container" style="--fill: 60%;">
<span class="percentage">60%</span>
</span>
</div>
<div class="skills-bar">
<label>ReactJS</label>
<span class="bar-container" style="--fill: 60%;">
<span class="percentage">60%</span>
</span>
</div>
<div class="skills-bar">
<label>SQL</label>
<span class="bar-container" style="--fill: 85%;">
<span class="percentage">85%</span>
</span>
</div>
<div class="skills-bar">
<label>MongoDB</label>
<span class="bar-container" style="--fill: 60%;">
<span class="percentage">60%</span>
</span>
</div>
<div class="skills-bar">
<label>Spring Boot</label>
<span class="bar-container" style="--fill: 60%;">
<span class="percentage">60%</span>
</span>
</div>
<div class="skills-bar">
<label>Selenium</label>
<span class="bar-container" style="--fill: 70%;">
<span class="percentage">70%</span>
</span>
</div>
</div>
<!-- Contact Section -->
<div class="card" id="contact">
<h2>Contact</h2><hr><br>
<p>Email: <a href="mailto:tarun@example.com">priyakhairate0000@gmail.com</a></p>
<p>Phone: +91 9096812382</p>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2024 Priya Khairate. All rights reserved.</p>
</footer>
<!-- JavaScript -->
<script>
const themeToggle = document.getElementById('themeToggle');
const body = document.body;
// Theme Toggle
themeToggle.addEventListener('click', () => {
body.classList.toggle('dark');
themeToggle.classList.toggle('dark');
});
// Scroll Progress
const progressBar = document.getElementById('progressBar');
window.addEventListener('scroll', () => {
const scrollTop = window.scrollY;
const docHeight = document.documentElement.scrollHeight - window.innerHeight;
const scrolled = (scrollTop / docHeight) * 100;
progressBar.style.width = `${scrolled}%`;
});
// Scroll to Section
function scrollToSection(id) {
const section = document.getElementById(id);
if (section) {
section.scrollIntoView({ behavior: 'smooth' });
}
}
</script>
</body>
</html>