-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
469 lines (440 loc) · 25.6 KB
/
index.html
File metadata and controls
469 lines (440 loc) · 25.6 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prashant Pandey | Portfolio</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- Font Awesome for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Favicon -->
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 fill=%22%23000000%22 rx=%2220%22/><text x=%2235%22 y=%2265%22 font-family=%22Arial, sans-serif%22 font-weight=%22bold%22 font-size=%2245%22 fill=%22%23ffffff%22 text-anchor=%22middle%22>P.P</text><text x=%2275%22 y=%2265%22 font-family=%22Arial, sans-serif%22 font-weight=%22bold%22 font-size=%2245%22 fill=%22%23667eea%22 text-anchor=%22middle%22>.</text></svg>"
type="image/svg+xml">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Floating Dock Navigation -->
<nav class="navbar dock" id="navbar">
<div class="nav-container dock-container">
<ul class="nav-links dock-links">
<li><a href="#home" class="nav-link dock-icon active" aria-label="Home" title="Home"><i
class="fas fa-home"></i></a></li>
<li><a href="#about" class="nav-link dock-icon" aria-label="About" title="About"><i
class="fas fa-user"></i></a></li>
<li><a href="#skills" class="nav-link dock-icon" aria-label="Skills" title="Skills"><i
class="fas fa-code"></i></a></li>
<li><a href="#experience" class="nav-link dock-icon" aria-label="Experience" title="Experience"><i
class="fas fa-briefcase"></i></a></li>
<li><a href="#projects" class="nav-link dock-icon" aria-label="Projects" title="Projects"><i
class="fas fa-laptop-code"></i></a></li>
<li><a href="#contact" class="nav-link dock-icon" aria-label="Contact" title="Contact"><i
class="fas fa-envelope"></i></a></li>
<li class="dock-divider"></li>
<li><a href="https://github.com/prashantucer" target="_blank" class="nav-link dock-icon"
aria-label="GitHub" title="GitHub"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/prashantpandey7/" target="_blank" class="nav-link dock-icon"
aria-label="LinkedIn" title="LinkedIn"><i class="fab fa-linkedin-in"></i></a></li>
<li class="dock-divider"></li>
<li>
<button id="theme-toggle" class="nav-link dock-icon theme-btn" aria-label="Toggle Theme"
title="Toggle Theme">
<i class="fas fa-sun mode-icon"></i>
</button>
</li>
</ul>
</div>
</nav>
<!-- Scroll Progress Indicator -->
<div class="scroll-progress-container">
<div class="scroll-progress-bar" id="myBar"></div>
</div>
<!-- Floating Brand Logo -->
<a href="#home" class="logo floating-logo" id="main-logo" aria-label="Home">P.P<span>.</span></a>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section id="home" class="hero section">
<div class="hero-content fade-in-up">
<span class="greeting">Hi, my name is</span>
<h1 class="name">Prashant Pandey.</h1>
<h2 class="title">I am a <span class="typing-text"></span><span class="cursor"> </span></h2>
<p class="tagline">2nd Year B.Tech CSE student at AKTU. Passionate about Artificial Intelligence,
Machine Learning, and crafting robust full-stack solutions.</p>
<div class="hero-cta">
<a href="#projects" class="btn btn-primary">View My Work <i class="fas fa-arrow-right"></i></a>
<a href="#contact" class="btn btn-outline">Contact Me</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about section">
<div class="section-title reveal">
<h2>About Me</h2>
<div class="underline"></div>
</div>
<div class="about-content reveal">
<div class="about-text">
<p>Hello! I am a passionate 2nd-year B.Tech CSE student driven by curiosity and a deep interest in
Artificial Intelligence and Machine Learning. I am currently building my foundation in
programming with Java and C, while actively working on full-stack development projects.</p>
<p>My primary goal is to master Python for AI/ML applications and create innovative solutions. I
focus on building applications that connect and empower students, continuously expanding my
technical toolkit to stay ahead of the curve.</p>
<div class="about-highlights">
<div class="highlight-item">
<i class="fas fa-graduation-cap"></i>
<div>
<h4>Education</h4>
<span>AKTU (UCER) - 2nd Yr CSE</span>
</div>
</div>
<div class="highlight-item">
<i class="fas fa-coffee"></i>
<div>
<h4>Interests</h4>
<span>Design, Problem Solving, Open Source</span>
</div>
</div>
</div>
</div>
<div class="about-image-wrapper">
<div class="about-image">
<!-- Generic pleasant profile picture using unsplash -->
<img src="https://images.unsplash.com/photo-1549692520-acc6669e2f0c?q=80&w=600&auto=format&fit=crop"
alt="Profile Picture">
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills section">
<div class="section-title reveal">
<h2>My Skills</h2>
<div class="underline"></div>
</div>
<div class="skills-content reveal">
<!-- Skill Category: Frontend -->
<div class="skills-card">
<h3><i class="fas fa-laptop-code"></i> Frontend & Design</h3>
<div class="skill-tags">
<span class="skill-tag"><i class="fab fa-html5"></i> HTML/CSS</span>
<span class="skill-tag"><i class="fab fa-js"></i> JavaScript</span>
<span class="skill-tag"><i class="fab fa-react"></i> React</span>
<span class="skill-tag"><i class="fas fa-wind"></i> Tailwind CSS</span>
<span class="skill-tag"><i class="fab fa-figma"></i> Figma</span>
<span class="skill-tag"><i class="fas fa-mobile-alt"></i> Responsive Design</span>
</div>
</div>
<!-- Skill Category: Backend/Tools -->
<div class="skills-card">
<h3><i class="fas fa-server"></i> Backend & Core</h3>
<div class="skill-tags">
<span class="skill-tag"><i class="fab fa-node-js"></i> Node.js</span>
<span class="skill-tag"><i class="fab fa-node-js"></i> Express.js</span>
<span class="skill-tag"><i class="fas fa-database"></i> MongoDB</span>
<span class="skill-tag"><i class="fas fa-fire"></i> Firebase/Firestore</span>
<span class="skill-tag"><i class="fab fa-java"></i> Java / C</span>
<span class="skill-tag"><i class="fab fa-python"></i> Python</span>
</div>
</div>
</div>
</section>
<!-- Experience & Education Section -->
<section id="experience" class="resume section">
<div class="resume-container reveal">
<!-- Work Experience -->
<div class="resume-block">
<h2>Work Experience</h2>
<div class="resume-list">
<!-- Institution's Innovation Council -->
<div class="resume-item">
<div class="resume-badge">I</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>Institution's Innovation Council</h3>
<div class="header-right">
<span class="resume-date">Nov 2025 - Present</span>
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>Social Media Coordinator</h4>
<p>Prayagraj, Uttar Pradesh, India · Hybrid</p>
</div>
</div>
</div>
<!-- E-Cell, UCER -->
<div class="resume-item">
<div class="resume-badge">E</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>E-Cell, UCER Prayagraj</h3>
<div class="header-right">
<span class="resume-date">Jul 2025 - Present</span>
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>Design Head</h4>
<p style="margin-bottom: 10px;">Prayagraj, Uttar Pradesh, India · On-site</p>
<p>I oversee the complete visual identity and digital branding strategy for the
university's Entrepreneurship Cell. Leading a creative team, I direct the
development of high-impact marketing collateral, event graphics, and UI concepts
for our major programs, hackathons, and speaker sessions, ensuring a
professional and cohesive aesthetic across all our platforms.</p>
</div>
</div>
</div>
<!-- ReWorks.in -->
<div class="resume-item">
<div class="resume-badge">R</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>ReWorks.in</h3>
<div class="header-right">
<span class="resume-date">Jun 2025 - Jul 2025</span>
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>Web & SEO Intern</h4>
<p style="margin-bottom: 10px;">Prayagraj, Uttar Pradesh, India · On-site</p>
<p>During my two-month internship, I worked on website development and optimization
as part of a small team. I was responsible for building and customizing
responsive websites using WordPress, primarily using Elementor to design layouts
and develop fully functional pages. This involved theme customization, plugin
integration, and resolving design or technical issues.</p>
<br>
<p>I also assisted with hosting and deployment tasks, including server setup, domain
and DNS management, and routine maintenance to ensure smooth website
performance. On the optimization front, I focused on improving content
structure, enhancing page speed, and applying on-page SEO techniques to improve
visibility and user experience.</p>
<br>
<p>In addition, I was involved in direct client communication—understanding their
requirements, suggesting improvements, and delivering timely updates. The
experience helped me strengthen my technical skills, manage multiple tasks
efficiently, and adapt quickly in a fast-paced startup environment.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Education -->
<div class="resume-block education-block" style="margin-top: 2rem;">
<h2>Education</h2>
<div class="resume-list">
<!-- UGI -->
<div class="resume-item">
<div class="resume-badge">U</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>United Group of Institutions</h3>
<div class="header-right">
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>Bachelor of Technology - BTech, Computer Science</h4>
<p>Affiliated from Dr. A.P.J. Abdul Kalam Technical University (AKTU), Lucknow</p>
</div>
</div>
</div>
<!-- CISCE -->
<div class="resume-item">
<div class="resume-badge">S</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>St.Johns Co Ed School</h3>
<div class="header-right">
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>HSC, Education</h4>
<p>Council for the Indian School Certificate Examinations (CISCE)</p>
</div>
</div>
</div>
<!-- CBSE -->
<div class="resume-item">
<div class="resume-badge">S</div>
<div class="resume-content">
<div class="resume-header collapsible-header">
<h3>Seth Anandram Jaipuria School (SARJ), Prayagraj</h3>
<div class="header-right">
<i class="fas fa-chevron-down toggle-icon"></i>
</div>
</div>
<div class="resume-body">
<h4>INTERMEDIATE</h4>
<p>Central Board of Secondary Education (CBSE)</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects section">
<div class="section-title reveal">
<h2>Featured Projects</h2>
<div class="underline"></div>
</div>
<div class="projects-grid reveal">
<!-- Project 1 -->
<div class="project-card">
<div class="project-img">
<img src="https://prashant-dev.netlify.app/images/3.webp" alt="Project 1">
<div class="project-overlay">
<a href="https://ugienigma.org/enigma13/" target="_blank" class="project-link"
aria-label="View Project"><i class="fas fa-external-link-alt"></i></a>
<a href="https://github.com/prashantucer/enigmanew" class="project-link"
aria-label="View Code"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="project-info">
<h3>Enigma 13 Platform</h3>
<p>An interactive technical challenges platform featuring real-time leaderboards, an event
registration system, and live updates.</p>
<div class="project-tech">
<span>HTML5</span>
<span>CSS3</span>
<span>JS Framework</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card">
<div class="project-img">
<img src="https://prashant-dev.netlify.app/images/06569d452f61fea15278ad725b6b75bf.jpg"
alt="Ecellucer Website Screenshot">
<div class="project-overlay">
<a href="https://ecellucer.me" target="_blank" class="project-link"
aria-label="View Project"><i class="fas fa-external-link-alt"></i></a>
<a href="https://github.com/prashantucer/ECELL-UCER" class="project-link"
aria-label="View Code"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="project-info">
<h3>Ecellucer Website</h3>
<p>The official website for the Entrepreneurship Cell at UCER, Prayagraj to foster
entrepreneurial mindsets and provide mentorship resources.</p>
<div class="project-tech">
<span>HTML5</span>
<span>CSS3</span>
<span>JS Framework</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card">
<div class="project-img">
<img src="https://prashant-dev.netlify.app/images/f791599031051ba3617ee67f2d24faf6.jpg"
alt="My First Portfolio Screenshot">
<div class="project-overlay">
<a href="https://prashant-dev.netlify.app/" target="_blank" class="project-link"
aria-label="View Project"><i class="fas fa-external-link-alt"></i></a>
<a href="https://github.com/prashantucer/personal-portfolio-react" target="_blank"
class="project-link" aria-label="View Code"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="project-info">
<h3>My First Portfolio</h3>
<p>The original iteration of my personal portfolio, showcasing my early web development journey
and foundational frontend skills.</p>
<div class="project-tech">
<span>TypeScript</span>
<span>Tailwind CSS</span>
<span>React</span>
</div>
</div>
</div>
</div>
<div class="projects-more">
<a href="https://github.com/prashantucer" target="_blank" class="btn btn-outline">See More on GitHub</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact section">
<div class="section-title reveal">
<h2>Get In Touch</h2>
<div class="underline"></div>
</div>
<div class="contact-content reveal">
<p class="contact-subtext">Although I’m currently focused on my studies and open-source projects, my
inbox is always open. Whether you have a question or just want to say hi, I’ll try my best to get
back to you!</p>
<div class="contact-grid">
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<h4>Email</h4>
<a href="mailto:prashantpandeyucer@gmail.com">prashantpandeyucer@gmail.com</a>
</div>
</div>
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h4>Location</h4>
<span>Prayagraj, India</span>
</div>
</div>
<div class="contact-socials">
<a href="https://github.com/prashantucer" target="_blank" aria-label="GitHub"><i
class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/prashantpandey7/" target="_blank"
aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="https://x.com/patrioticpoison" target="_blank" aria-label="X (Twitter)"><i
class="fab fa-x-twitter"></i></a>
<a href="https://www.instagram.com/prashantucer/" target="_blank" aria-label="Instagram"><i
class="fab fa-instagram"></i></a>
<a href="https://linktr.ee/PrashantPandey1" target="_blank" aria-label="Linktree"><i
class="fas fa-link"></i></a>
</div>
</div>
<form class="contact-form" action="https://formsubmit.co/06715aa774134cbe38bc19cb841ceca7"
method="POST">
<!-- Disable Captcha for better UX (optional) -->
<input type="hidden" name="_captcha" value="false">
<div class="form-group">
<input type="text" id="name" name="name" placeholder="Name" required>
</div>
<div class="form-group">
<input type="email" id="email" name="email" placeholder="Email" required>
</div>
<div class="form-group">
<input type="text" id="subject" name="subject" placeholder="Subject">
</div>
<div class="form-group">
<textarea id="message" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message <i
class="fas fa-paper-plane"></i></button>
</form>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<p>© 2026 Prashant Pandey. All rights reserved.</p>
</div>
<a href="#home" class="scroll-top" aria-label="Scroll to Top">
<i class="fas fa-chevron-up"></i>
</a>
</footer>
<!-- Custom Script -->
<script src="script.js"></script>
</body>
</html>