Skip to content

Commit ca04cc4

Browse files
authored
Add files via upload
0 parents  commit ca04cc4

File tree

5 files changed

+516
-0
lines changed

5 files changed

+516
-0
lines changed

Resume.pdf

51.6 KB
Binary file not shown.

index.html

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Priyanshu - Software Developer</title>
8+
<link rel="stylesheet" href="style.css">
9+
</head>
10+
11+
<body>
12+
13+
<!-- Navigation Bar -->
14+
<nav class="navbar">
15+
<div class="logo">Priyanshu</div>
16+
<ul class="nav-links">
17+
<li><a href="#education">Education</a></li>
18+
<li><a href="#experience">Experience</a></li>
19+
<li><a href="#projects">Projects</a></li>
20+
<li><a href="#skills">Technical Skills</a></li>
21+
<li><a href="#achievements">Achievements</a></li>
22+
<li><a href="#contact">Contact Me</a></li>
23+
</ul>
24+
</nav>
25+
26+
<!-- Hero Section -->
27+
<section id="hero">
28+
<div class="hero-container">
29+
<div class="hero-photo-container">
30+
<img src="priyanshu.jpg" alt="Priyanshu's photo" class="hero-photo">
31+
</div>
32+
<div class="hero-text">
33+
<h3 class="role">Software Developer</h3>
34+
<h1>Hey, I'm Priyanshu from Gurgaon</h1> <!-- Combined Greeting -->
35+
</div>
36+
</div>
37+
</section>
38+
39+
40+
<!-- Education Section -->
41+
<section id="education" class="section-container">
42+
<h2>Education</h2>
43+
<div class="education-container">
44+
<div class="education-item">
45+
<h3>Motilal Nehru National Institute of Technology, Prayagraj (MNNIT Allahabad)</h3>
46+
<p><strong>Nov 2021 – May 2025</strong><br>
47+
Bachelor of Technology (B.Tech) in Computer Science and Engineering
48+
</p>
49+
<p>Pursuing a degree at MNNIT Allahabad, consistently ranked among the top 10 engineering colleges in
50+
India by the Government of India.</p>
51+
</div>
52+
<div class="education-item">
53+
<h3>Delhi Public School Patna</h3>
54+
<p><strong>April 2019 – Aug 2021</strong><br>
55+
Class XII (Science Stream)
56+
</p>
57+
<p>Achieved a commendable 92.2% mark, graduating from one of the most prestigious schools in North-East
58+
India.</p>
59+
</div>
60+
<div class="education-item">
61+
<h3>Delhi Public School Patna</h3>
62+
<p><strong>April 2017 – May 2019</strong><br>
63+
Class X
64+
</p>
65+
<p>Secured a strong 91.6% mark, establishing a foundation at a renowned institution in North-East India.
66+
</p>
67+
</div>
68+
</div>
69+
</section>
70+
71+
72+
<!-- Experience Section -->
73+
<section id="experience" class="section-container">
74+
<h2>Experience</h2>
75+
<div class="experience-container">
76+
<div class="experience-item">
77+
<h3>Software Developer Intern, BlackNGreen</h3>
78+
<p><strong>Gurugram, India</strong> (Jan 2025 – Present)</p>
79+
<p>• Reduced time to render NexEVA by 36% by implementing a prediction algorithm.</p>
80+
<p>• Integrated Spotlight Search by creating a tool to extract metadata from saved chat transcripts.</p>
81+
<p>• Redesigned customer categorization and reduced response retrieval time by 25%.</p>
82+
</div>
83+
</div>
84+
</section>
85+
86+
87+
88+
89+
<!-- Projects Section -->
90+
<section id="projects" class="section-container">
91+
<h2>Projects</h2>
92+
<div class="project-container">
93+
<div class="project-item">
94+
<h3>GoPizza</h3>
95+
<p>Reduced average order processing time by 30% using Node.js backend.</p>
96+
<p>Integrated a dynamic interface using HTML/CSS and managed data with MongoDB.</p>
97+
<p><strong>Tools Used:</strong> JavaScript, Node.js, Express.js, MongoDB, HTML, CSS</p>
98+
<p><strong>Link:</strong> <a href="https://github.com/proy03/GoPizza"
99+
target="_blank">github.com/proy03/GoPizza</a></p>
100+
</div>
101+
<div class="project-item">
102+
<h3>Wind Speed Prediction using ML</h3>
103+
<p>Designed and implemented multiple machine learning models achieving an RMSE of 0.02011 for accurate
104+
wind
105+
speed prediction at specific coordinates.</p>
106+
<p>Utilized Python and Google Colab to train the model on a dataset of 200,000+ data points, ensuring
107+
high
108+
performance and scalability.</p>
109+
<p><strong>Tools Used:</strong> Python, Google Colab</p>
110+
</div>
111+
</div>
112+
</section>
113+
114+
115+
<!-- Technical Skills Section -->
116+
<section id="skills" class="section-container">
117+
<h2>Technical Skills</h2>
118+
<ul>
119+
<li><strong>Languages:</strong> C++, C, Java, HTML/CSS, JavaScript, SQL, NoSQL, Python</li>
120+
<li><strong>Technologies/Frameworks:</strong> Node.js, TensorFlow, Express.js, Git, AWS, MongoDB, Linux</li>
121+
<li><strong>Concepts:</strong> OOP, Deep Learning, DBMS, Operating Systems</li>
122+
<li><strong>Soft Skills:</strong> Communication, Team Collaboration, Critical Thinking, Empathy</li>
123+
</ul>
124+
</section>
125+
126+
<!-- Achievements Section -->
127+
<section id="achievements" class="section-container">
128+
<h2>Achievements</h2>
129+
<ul>
130+
<li>Hack36 Winner - 1st place for building a real-time pizza delivery web app.</li>
131+
<li>DSA Proficiency - Solved 500+ DSA problems.</li>
132+
<li>Anokhi Pehel Coordinator - Coordinated a student-led initiative for slum students.</li>
133+
<li>Rural Immersion Program - Led a project for rural waste management improvement.</li>
134+
</ul>
135+
</section>
136+
137+
<!-- Contact Section -->
138+
<section id="contact" class="section-container">
139+
<h2>Contact Me</h2>
140+
<ul>
141+
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
142+
<li>Phone: +91-8789669216</li>
143+
<li>LinkedIn: <a href="https://www.linkedin.com/in/priyanshuroy3003"
144+
target="_blank">linkedin.com/in/priyanshuroy3003</a></li>
145+
</ul>
146+
</section>
147+
148+
<!-- Download CV Button -->
149+
<div class="download-container">
150+
<a href="path_to_your_cv.pdf" class="download-cv" download>Download CV</a>
151+
</div>
152+
153+
<!-- Footer -->
154+
<footer>
155+
<p>&copy; 2025 Priyanshu. All Rights Reserved.</p>
156+
</footer>
157+
158+
</body>
159+
160+
</html>

priyanshu.jpg

712 KB
Loading

script.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
document.addEventListener('DOMContentLoaded', () => {
2+
const navLinks = document.querySelectorAll('.nav-links a');
3+
4+
navLinks.forEach(link => {
5+
link.addEventListener('click', smoothScroll);
6+
});
7+
8+
function smoothScroll(event) {
9+
event.preventDefault();
10+
11+
const targetId = this.getAttribute('href').substring(1);
12+
const targetElement = document.getElementById(targetId);
13+
14+
window.scroll({
15+
top: targetElement.offsetTop - 60,
16+
behavior: 'smooth',
17+
});
18+
}
19+
});

0 commit comments

Comments
 (0)