-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
505 lines (439 loc) · 16.4 KB
/
Copy pathindex.html
File metadata and controls
505 lines (439 loc) · 16.4 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 | Praneetha Voona</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* --- 1. CSS VARIABLES --- */
:root {
--primary-color: #0f172a;
--secondary-color: #334155;
--accent-color: #2563eb;
--accent-hover: #1d4ed8;
--background-light: #f8fafc;
--background-white: #ffffff;
--text-main: #1e293b;
--text-light: #64748b;
--border-color: #e2e8f0;
}
/* --- 2. GLOBAL RESET --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--background-light);
color: var(--text-main);
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
transition: 0.3s;
}
ul {
list-style: none;
}
/* --- 3. LAYOUT UTILITIES --- */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 80px 0;
}
/* --- 4. NAVIGATION --- */
header {
background-color: var(--background-white);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.nav-links {
display: flex;
gap: 30px;
}
.nav-links a {
font-weight: 500;
color: var(--secondary-color);
font-size: 0.95rem;
}
.nav-links a:hover {
color: var(--accent-color);
}
/* --- 5. HERO SECTION --- */
.hero {
background-color: var(--background-white);
text-align: center;
padding: 120px 20px;
}
.hero h1 {
font-size: 3.5rem;
color: var(--primary-color);
margin-bottom: 20px;
letter-spacing: -1px;
}
.hero p {
font-size: 1.25rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto 40px auto;
}
.btn {
display: inline-block;
padding: 12px 30px;
background-color: var(--accent-color);
color: white;
border-radius: 6px;
font-weight: 600;
transition: transform 0.2s ease, background-color 0.2s;
}
.btn:hover {
background-color: var(--accent-hover);
transform: translateY(-2px);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--accent-color);
color: var(--accent-color);
margin-left: 10px;
}
.btn-outline:hover {
background-color: var(--accent-color);
color: white;
}
/* --- 6. EDUCATION & EXPERIENCE --- */
.section-title {
text-align: center;
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 50px;
}
.timeline-item {
background: var(--background-white);
padding: 30px;
border-radius: 8px;
border: 1px solid var(--border-color);
margin-bottom: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.timeline-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
flex-wrap: wrap;
}
.timeline-title h3 {
font-size: 1.25rem;
color: var(--primary-color);
}
.timeline-title h4 {
font-size: 1rem;
color: var(--accent-color);
margin-top: 5px;
}
.timeline-date {
font-weight: 600;
color: var(--text-light);
font-size: 0.9rem;
}
.timeline-desc ul {
list-style: disc;
margin-left: 20px;
color: var(--secondary-color);
}
.timeline-desc li {
margin-bottom: 8px;
}
/* --- 7. SKILLS SECTION --- */
.skills-container {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 800px;
margin: 0 auto;
}
.skill-category {
background: var(--background-white);
padding: 20px;
border-radius: 8px;
border: 1px solid var(--border-color);
}
.skill-category h3 {
color: var(--accent-color);
margin-bottom: 10px;
font-size: 1.1rem;
}
/* --- 8. PROJECTS SECTION --- */
.projects {
background-color: var(--background-white);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}
.project-card {
background: var(--background-light);
border: 1px solid var(--border-color);
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
border-color: var(--accent-color);
}
.project-content {
padding: 25px;
flex-grow: 1;
}
.project-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 10px;
color: var(--primary-color);
}
.project-desc {
color: var(--secondary-color);
font-size: 0.95rem;
margin-bottom: 20px;
}
.project-desc ul {
list-style: disc;
margin-left: 20px;
}
/* --- 9. FOOTER --- */
footer {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 50px 0;
}
.social-links {
margin-top: 20px;
}
.social-links a {
margin: 0 10px;
font-size: 1.5rem;
color: #cbd5e1;
}
.social-links a:hover {
color: white;
}
/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.nav-links { display: none; }
.project-card { margin-bottom: 20px; }
.timeline-header { flex-direction: column; }
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">Praneetha Voona</div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
</div>
</header>
<section id="about" class="hero">
<div class="container">
<h1>Hello, I'm Praneetha Voona</h1>
<p>Passionate about software development and creating solutions that make a real impact.</p>
<div>
<a href="#projects" class="btn">View My Projects</a>
<a href="mailto:praneethavoona@gmail.com" class="btn btn-outline">Contact Me</a>
</div>
</div>
</section>
<section id="education">
<div class="container">
<h2 class="section-title">Education</h2>
<div class="timeline-item">
<div class="timeline-header">
<div class="timeline-title">
<h3>The University of Tennessee, Knoxville, Tickle College of Engineering</h3>
<h4>Bachelor of Science in Computer Science</h4>
</div>
<span class="timeline-date">Knoxville, TN | Graduation: May 2027</span>
</div>
<div class="timeline-desc">
<p><strong>GPA:</strong> 3.39</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-header">
<div class="timeline-title">
<h3>Coursework</h3>
</div>
</div>
<div class="timeline-desc">
<ul>
<li><strong>Algorithms (Spring 2025):</strong> Applied dynamic programming, sorting algorithms, graph traversal (DFS/BFS), and minimum spanning trees through coursework and problem-solving assignments.</li>
<li><strong>Data Structures (Fall 2024):</strong> Completed 10 hands-on labs including N-Queens and Blackjack, strengthening data structures and coding proficiency.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-header">
<div class="timeline-title">
<h3>Honors and Awards</h3>
</div>
</div>
<div class="timeline-desc">
<ul>
<li><strong>Dean's List:</strong> Spring Semester 2025</li>
<li><strong>Global Ambassador Scholarship:</strong> May 2023-Present. Mentor prospective international students and foster an inclusive, welcoming campus community.</li>
</ul>
</div>
</div>
</div>
</section>
<section id="experience" style="background-color: var(--background-white);">
<div class="container">
<h2 class="section-title">Work Experience</h2>
<div class="timeline-item">
<div class="timeline-header">
<div class="timeline-title">
<h3>Developer</h3>
<h4>Hack4Impact UTK</h4>
</div>
<span class="timeline-date">Knoxville, TN | January 2026- Present</span>
</div>
<div class="timeline-desc">
<ul>
<li>Contributing to an admin client management system for Never Alone Recovery using Next.js and React to streamline client tracking and payments.</li>
<li>Collaborating with team members on full-stack development while following Git workflow and code review best practices.</li>
<li>Implementing authentication and database integration features for a secure nonprofit platform.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-header">
<div class="timeline-title">
<h3>UT Student Assistant - International</h3>
<h4>The University Of Tennessee, Knoxville - International Recruitment Office</h4>
</div>
<span class="timeline-date">Knoxville, TN | September 2025 - Present</span>
</div>
<div class="timeline-desc">
<ul>
<li>Manage international student recruitment operations including email communications, grade conversions, and merchandise inventory tracking.</li>
<li>Maintain Excel spreadsheets and records to support recruitment processes and departmental efficiency.</li>
</ul>
</div>
</div>
</div>
</section>
<section id="skills">
<div class="container">
<h2 class="section-title">Skills</h2>
<div class="skills-container">
<div class="skill-category">
<h3>Programming Languages</h3>
<p>Python, Java, C++, C, JavaScript</p>
</div>
<div class="skill-category">
<h3>Concepts</h3>
<p>Object-Oriented Programming, Algorithms, Data Structures</p>
</div>
<div class="skill-category">
<h3>Tools & Frameworks</h3>
<p>React, GitHub, SQLite, OpenCV, VS Code, Terminal</p>
</div>
<div class="skill-category">
<h3>Other</h3>
<p>GUI Development, CSV Import/Export, TinkerCAD</p>
</div>
</div>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">Projects</h2>
<div class="projects-grid">
<article class="project-card">
<div class="project-content">
<h3 class="project-title">Facial Recognition Two-Factor Authentication System</h3>
<div class="project-desc">
<ul>
<li>Developed a facial recognition-based two-factor authentication system using Python and OpenCV.</li>
<li>Collaborated with a partner integrating secure login workflows with a student database management interface.</li>
</ul>
</div>
</div>
</article>
<article class="project-card">
<div class="project-content">
<h3 class="project-title">Superball Game Analysis and Move Recommendation Tool</h3>
<div class="project-desc">
<ul>
<li>Developed two C++ programs using a Disjoint Set data structure to identify connected components in the game.</li>
<li>Implemented a greedy algorithm to recommend optimal moves based on scoring potential and board-state evaluation.</li>
</ul>
</div>
</div>
</article>
<article class="project-card">
<div class="project-content">
<h3 class="project-title">Snakes and Ladders Game (C++)</h3>
<div class="project-desc">
<ul>
<li>Developed using object-oriented programming and collaborative development.</li>
</ul>
</div>
</div>
</article>
</div>
</div>
</section>
<footer id="contact">
<div class="container">
<h2>Let's Connect</h2>
<p style="margin: 20px 0; color: #cbd5e1;">I am currently looking for internship opportunities.</p>
<a href="mailto:praneethavoona@gmail.com" class="btn">Get In Touch</a>
<div class="social-links">
<a href="https://linkedin.com/in/praneetha-voona" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="mailto:praneethavoona@gmail.com"><i class="fas fa-envelope"></i></a>
</div>
<div style="margin-top: 50px; border-top: 1px solid #334155; padding-top: 20px;">
<p>© 2026 Praneetha Voona. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>