-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 4.54 KB
/
Copy pathindex.html
File metadata and controls
112 lines (102 loc) · 4.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Priyanka Kumari - Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Priyanka Kumari</h1>
<p>Computer Science Student | Aspiring SWE & Quant</p>
<p>
📞 +91-8252994451 | ✉️ priyanka06kumari0403@gmail.com
</p>
<p>
<a href="https://linkedin.com/in/priyanka-kumari-059776271" target="_blank">LinkedIn</a> |
<a href="https://github.com/Wanderer65" target="_blank">GitHub</a>
</p>
</div>
</header>
<main class="container">
<section class="card" id="about">
<h2>About Me</h2>
<p>A motivated student building projects and learning software engineering.</p>
</section>
<section class="card" id="education">
<h2>Education</h2>
<p><strong>Indian Institute of Information Technology, Agartala</strong></p>
<p>B.Tech in Computer Science and Engineering</p>
<p>Relevant Coursework: Data Structures, Programming Fundamentals, Discrete Mathematics</p>
</section>
<section class="card" id="experience">
<h2>Experience</h2>
<h3>Web Development Intern | Shadfox Training Internship</h3>
<p>Jul 2025 – Present (Remote)</p>
<ul>
<li>Built and modified frontend components using HTML, CSS, and JavaScript.</li>
<li>Debugged UI issues and improved component behavior through iterative testing.</li>
<li>Used Git and GitHub for version control, branching, and pull requests.</li>
</ul>
<h3>Tech Core Team Member | Entrepreneurship Cell, IIIT Agartala</h3>
<ul>
<li>Collaborated on frontend components and college-level events using GitHub workflow.</li>
</ul>
<h3>Core Technical Club Member | GDG IIIT Agartala</h3>
<ul>
<li>Contributed to workshops, coding sessions, and collaborative GitHub projects.</li>
</ul>
<h3>Open Source Contributor | SSOC, GSSoC, Hacktoberfest 2025</h3>
<ul>
<li>Raised meaningful pull requests and improved documentation in open-source projects.</li>
</ul>
</section>
<section class="card" id="projects">
<h2>Projects</h2>
<div class="project-grid">
<div class="project">
<h3>Portfolio Website</h3>
<p>Built a responsive personal website to showcase projects and technical skills.</p>
</div>
<div class="project">
<h3>Task Manager App</h3>
<p>CRUD-based To-Do application to practice JavaScript fundamentals.</p>
</div>
<div class="project">
<h3>Student Record Management System</h3>
<p>Console-based Python app with CRUD operations and modular programming.</p>
</div>
<div class="project">
<h3>Task Automation Scripts</h3>
<p>Python scripts for file handling and basic automation tasks.</p>
</div>
</div>
</section>
<section class="card" id="achievements">
<h2>Achievements</h2>
<ul>
<li>Runner-Up – Ideathon 2025</li>
<li>Finalist – Inter-IIIT Hackathon 2025</li>
<li>Finalist – State-Level Cybersecurity Hackathon 2025</li>
<li>Hacktoberfest Contributor 2025</li>
<li>Flipkart GRID Shortlisted 2025</li>
<li>Amazon Future Engineer Scholar</li>
</ul>
</section>
<section class="card" id="skills">
<h2>Technical Skills</h2>
<ul>
<li><strong>Languages:</strong> Python, HTML/CSS</li>
<li><strong>Tools:</strong> Git, GitHub, VS Code, PyCharm, Windows, Linux Basics</li>
<li><strong>Core Concepts:</strong> OOP, Basic Data Structures, Problem Solving</li>
<li><strong>Soft Skills:</strong> Leadership, Communication, Teamwork, Public Speaking</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 Priyanka Kumari</p>
</footer>
</body>
</html>