-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
494 lines (430 loc) · 15.9 KB
/
Copy pathindex.html
File metadata and controls
494 lines (430 loc) · 15.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abhiram Mandala - Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<style>
:root {
--primary: #ffd700;
--bg-dark: #121212;
--text-light: #ffffff;
--text-gray: #a0a0a0;
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 4rem;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
body {
background-color: var(--bg-dark);
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
}
/* Navigation Styles */
nav {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(18, 18, 18, 0.95);
padding: var(--spacing-sm) var(--spacing-md);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
color: var(--primary);
text-decoration: none;
font-weight: bold;
transition: transform 0.3s ease;
}
.logo:hover {
transform: scale(1.05);
}
.nav-links {
display: flex;
gap: var(--spacing-md);
list-style: none;
}
.nav-links a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-links a:hover {
color: var(--primary);
}
.nav-links a:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: var(--spacing-md);
background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7));
}
.hero-content {
max-width: 800px;
}
.hero-content h1 {
font-size: 4rem;
margin-bottom: var(--spacing-sm);
background: linear-gradient(45deg, var(--primary), #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient 8s ease infinite;
}
.typing-text {
font-size: 1.5rem;
color: var(--text-gray);
height: 2em;
margin-bottom: var(--spacing-md);
}
.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--primary);
color: var(--bg-dark);
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}
/* Section Styles */
.section {
padding: var(--spacing-lg) var(--spacing-md);
max-width: 1200px;
margin: 0 auto;
}
.section h2 {
font-size: 2.5rem;
margin-bottom: var(--spacing-md);
color: var(--primary);
text-align: center;
}
/* Skills Section */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-md);
}
.skill-item {
background: rgba(255, 255, 255, 0.05);
padding: var(--spacing-sm);
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease;
}
.skill-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.1);
}
.skill-item i {
font-size: 2rem;
margin-bottom: 0.5rem;
}
/* Projects Section */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-md);
}
.project-card {
background: rgba(255, 255, 255, 0.05);
padding: var(--spacing-md);
border-radius: 8px;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.1);
}
.project-card h3 {
font-size: 1.5rem;
margin-bottom: var(--spacing-sm);
color: var(--primary);
}
.project-card p {
color: var(--text-gray);
}
/* Contact Form */
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 1rem;
margin-bottom: var(--spacing-sm);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: var(--text-light);
transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.08);
}
.contact-form button {
width: 100%;
padding: 1rem;
background-color: var(--primary);
color: var(--bg-dark);
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.contact-form button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero-content h1 {
font-size: 3rem;
}
.section {
padding: var(--spacing-md) var(--spacing-sm);
}
}
</style>
</head>
<body>
<nav>
<div class="navbar">
<a href="#home" class="logo">< Abhiram Mandala /></a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<section id="home" class="hero">
<div class="hero-content">
<h1>I'm Abhiram Mandala</h1>
<p class="typing-text"></p>
<a href="#projects" class="cta-button">See my work</a>
</div>
</section>
<section id="about" class="section">
<h2>About Me</h2>
<p><strong>Name:</strong> Abhiram Mandala</p>
<p><strong>Email:</strong> abhirammadala02@gmail.com</p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/abhiram-mandala-a19a6726b/" target="_blank">LinkedIn Profile</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/AbhiramMandala" target="_blank">GitHub Profile</a></p>
<p><strong>LeetCode:</strong> <a href="https://leetcode.com/u/Abhiram02/" target="_blank">LeetCode Profile</a></p>
<p>I am a passionate Computer Science student with a strong interest in software development and problem-solving. I enjoy working on innovative projects and continuously learning new technologies to enhance my skills.</p>
</section>
<section id="skills" class="section">
<h2>My Skills</h2>
<div class="skills-grid">
<div class="skill-item">
<i class="fab fa-html5"></i>
<p>HTML</p>
</div>
<div class="skill-item">
<i class="fab fa-css3-alt"></i>
<p>CSS</p>
</div>
<div class="skill-item">
<i class="fab fa-js"></i>
<p>JavaScript</p>
</div>
<div class="skill-item">
<i class="fab fa-python"></i>
<p>Python</p>
</div>
<div class="skill-item">
<i class="fab fa-java"></i>
<p>Java</p>
</div>
<div class="skill-item">
<i class="fas fa-code"></i>
<p>C</p>
</div>
<div class="skill-item">
<i class="fas fa-database"></i>
<p>MySQL</p>
</div>
</div>
</section>
<section id="resume" class="section">
<h2>Resume</h2>
<p><strong>Education:</strong></p>
<ul>
<li><strong>SR University, Hanamkonda</strong> - Bachelor of Technology in Computer Science (Aug 2021 – Aug 2025) - CGPA: 8.6</li>
<li><strong>Narayana Junior College, Ibrahimpatnam</strong> - MPC Intermediate (Jul 2019 – Jul 2021) - Percentage: 97%</li>
<li><strong>Montessori High School, Huzurabad</strong> - SSC (Jun 2018 – Jun 2019) - GPA: 9.8</li>
</ul>
<p><strong>Internships:</strong></p>
<ul>
<li><strong>AICTE Virtual Internship</strong> - AWS Cloud Intern (Jun 2024 – Jul 2024) - Acquired hands-on experience in cloud techniques and applications.</li>
</ul>
<p><strong>Certifications:</strong></p>
<ul>
<li>Software Engineering Basics - IBM</li>
<li>Crash course on Python - Google</li>
<li>Database Management System - NPTEL</li>
<li>Data Structures and Algorithms using C++ - IBM</li>
</ul>
</section>
<section id="projects" class="section">
<h2>Projects</h2>
<div class="projects-grid">
<div class="project-card">
<h3>Movie Success Prediction</h3>
<p><strong>Technologies:</strong> Python, Jupyter Notebook</p>
<p>Developed a model to predict movie success using features like actors, director, and previous work. Implemented data preprocessing and recommendation logic using pandas and scikit-learn.</p>
</div>
<div class="project-card">
<h3>Hotel Management System</h3>
<p><strong>Technologies:</strong> Java</p>
<p>Developed a hotel management system to manage reservations, billing, and customer details with file handling for data persistence. Implemented OOP concepts like inheritance and multithreading.</p>
</div>
<div class="project-card">
<h3>Food Delivery Website</h3>
<p><strong>Technologies:</strong> HTML, CSS, JavaScript, SQL</p>
<p>Designed and developed a fully functional food delivery platform with features for orders and delivery. Built a MySQL backend to manage user accounts and food tracking.</p>
</div>
</div>
</section>
<section id="contact" class="section">
<h2>Contact Me</h2>
<form
class="contact-form"
action="https://formspree.io/f/xaewqwyd"
method="POST">
<input
type="text"
name="name"
placeholder="Your Name"
required>
<input
type="email"
name="email"
placeholder="Your Email"
required>
<textarea
name="message"
placeholder="Your Message"
rows="5"
required></textarea>
<button type="submit">
Send Message
</button>
</form>
<!--
<form class="contact-form" action="https://formspree.io/f/xaewqwyd"
method="POST">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
-->
<div style="text-align: center; margin-top: var(--spacing-md);">
<a href="https://x.com/AbhiramMandala" target="_blank" style="color: var(--text-light); margin: 0 10px;"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com/in/abhiram-mandala-a19a6726b/" target="_blank" style="color: var(--text-light); margin: 0 10px;"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/AbhiramMandala" target="_blank" style="color: var(--text-light); margin: 0 10px;"><i class="fab fa-github"></i></a>
</div>
</section>
<script>
const roles = ["Software Engineer", "Web Developer", "Cloud Enthusiast"];
let roleIndex = 0;
let charIndex = 0;
let isDeleting = false;
function typeText() {
const roleElement = document.querySelector('.typing-text');
const currentRole = roles[roleIndex];
if (isDeleting) {
roleElement.textContent = currentRole.substring(0, charIndex - 1);
charIndex--;
} else {
roleElement.textContent = currentRole.substring(0, charIndex + 1);
charIndex++;
}
if (!isDeleting && charIndex === currentRole.length) {
isDeleting = true;
setTimeout(typeText, 2000);
return;
}
if (isDeleting && charIndex === 0) {
isDeleting = false;
roleIndex = (roleIndex + 1) % roles.length;
}
setTimeout(typeText, isDeleting ? 50 : 100);
}
typeText();
const form = document.querySelector(".contact-form");
form.addEventListener("submit", async (e) => {
e.preventDefault();
const data = new FormData(form);
const response = await fetch(form.action, {
method: "POST",
body: data,
headers: {
"Accept": "application/json"
}
});
if (response.ok) {
alert("Message sent!");
form.reset();
}
});
</script>
</body>
</html>