-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
327 lines (295 loc) · 8.86 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Me</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
}
.container {
width: 80%;
margin: 0 auto;
max-width: 1000px;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 15px;
margin-top: 40px;
}
h1, h2 {
text-align: center;
color: #444;
margin-bottom: 20px;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
.intro {
background-color: #f9f9f9;
color: #333333;
border: 1px solid #e0e0e0;
border-radius: 12px;
padding: 40px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
text-align: center;
margin-bottom: 50px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.intro h1 {
font-family: 'Merriweather', serif;
font-size: 2.8em;
font-weight: 700;
margin-bottom: 20px;
color: #1a1a1a;
}
.intro p {
font-family: 'Lora', serif;
font-size: 1.2em;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
color: #666666;
text-align:justify;
}
section {
margin-bottom: 40px;
}
h3 {
color: #555;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
}
p, li {
font-size: 1.1em;
margin-bottom: 10px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 15px;
}
strong {
color: #444;
}
.skills, .projects, .interests, .activities,.education {
background-color: #e0f7fa;
padding: 15px;
border-radius: 10px;
margin-bottom: 20px;
}
.skills li, .projects li, .interests li, .activities li {
display: flex;
align-items: center;
}
.skills li::before, .projects li::before, .interests li::before, .activities li::before {
content: '✔️';
color: #2196f3;
margin-right: 10px;
}
.project-title {
font-weight: bold;
color: #2196f3;
}
.contact {
text-align: center;
margin-top: 40px;
padding: 20px;
background-color: #eee;
}
.contact a {
display: inline-block;
margin: 10px 20px;
text-decoration: none;
color: #444;
font-weight: bold;
font-size: 1.1em;
padding: 10px 20px;
border-radius: 8px;
transition: all 0.3s ease;
}
.section-header {
position: relative;
padding: 20px;
text-align: center;
font-size: 2.2em;
background-color: #e0f7fa;
border-radius: 10px;
margin-bottom: 20px;
}
.skills, .projects, .interests, .activities, .contact,.education {
background-color: #f9f9f9;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.skills:hover, .projects:hover, .interests:hover, .activities:hover, .contact:hover, .education:hover {
transform: translateY(-10px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.skills li, .projects li, .interests li, .activities li {
display: flex;
align-items: center;
transition: color 0.3s ease;
}
.skills li::before, .projects li::before, .interests li::before, .activities li::before {
content: '✔️';
color: #2196f3;
margin-right: 10px;
}
.project-title {
font-weight: bold;
color: #2196f3;
}
.project-title:hover {
color: #6dd5ed;
}
.icon-link {
font-size: 24px;
margin: 0 10px;
color: #000;
text-decoration: none;
}
.icon-link:hover {
color: #007bff;
}
.projects {
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px 0;
}
.projects h2, .skills h2, .education h2, .interests h2, .activities h2, .contact h2{
font-size: 1.8em;
color: #333;
border-bottom: 2px solid #007BFF;
padding-bottom: 10px;
margin-bottom: 20px;
}
.projects ul {
list-style-type: none;
padding: 0;
}
.projects li {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 15px;
margin-bottom: 10px;
transition: background-color 0.3s, box-shadow 0.3s;
}
.projects li:hover {
background-color: #f1f1f1;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.project-title {
font-weight: bold;
color: #007BFF;
display: block;
margin-bottom: 5px;
}
@media (max-width: 768px) {
.container {
width: 90%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="intro">
<h1>Pallavi Mukalla</h1>
<p>A highly motivated individual with a passion for technology and problem-solving. I work hard to turn creative ideas into effective solutions.</p>
</div>
<section class="education">
<h2>Educational Qualifications</h2>
<ul>
<li><strong>Bachelor of Technology (B.Tech)</strong> in Computer Science and Engineering
<br>Gayatri Vidya Parishad College of Enginnering(Autonomous)
<br>2022-2026
<br>CGPA: 9.5/10
</li>
<li><strong>Higher secondary(12th grade)</strong>
<br>Sri Chaitanya Junior college
<br>2020-2022
<br>Percentage: 96%
</li>
<li><strong>Secondary Education</strong>
<br>D. A. V. Centenary Public School
<br>March 2020
<br>Percentage: 95%
</li>
</ul>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>Programming Languages: Java, C++, Python, C</li>
<li>Web Development: HTML, CSS, JavaScript</li>
<li>Database Management: SQL</li>
<li>Tools and Technologies: Git, GitHub, VS Code</li>
</ul>
</section>
<section class="projects">
<h2>Projects</h2>
<ul>
<li><span class="project-title">To-Do List Application</span>
<br>A simple Java Swing application for task management.
<br>Key Concepts: Java, Swing, AWT
</li>
<li><span class="project-title">Basic Chat Application</span>
<br>A basic chat application developed in Java using socket programming for real-time communication between clients.
<br>Key Concepts: Java, Swing, Networking (Sockets), Multithreading
</li>
</ul>
</section>
<section class="interests">
<h2>Interests and Hobbies</h2>
<ul>
<li>Machine Learning & AI</li>
<li>Web Development</li>
<li>Data analytics</li>
<li>Problem Solving (LeetCode, HackerRank)</li>
</ul>
</section>
<section class="activities">
<h2>Extracurricular Activities</h2>
<ul>
<li>Participated in various coding events and hackathons.</li>
<li>Member of IEEE Club</li>
</ul>
</section>
<section class="contact">
<h2>Contact Me</h2>
<a href="https://mail.google.com/mail/?view=cm&fs=1&[email protected]" class="icon-link" title="Email Me">
<i class="fas fa-envelope"></i>
<br>Email
</a>
<a href="https://www.linkedin.com/in/pallavi-mukalla-b3b81a258" target="_blank" class="icon-link" title="Connect on LinkedIn">
<i class="fab fa-linkedin"></i>
<br>LinkedIn
</a>
<a href="https://github.com/Pallavi-Mukalla" target="_blank" class="icon-link" title="Visit My GitHub">
<i class="fab fa-github"></i>
<br>GitHub
</a>
</section>
</div>
</body>
</html>