-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
369 lines (350 loc) · 21.1 KB
/
index.html
File metadata and controls
369 lines (350 loc) · 21.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Geethika's Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link rel="stylesheet" href="one.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="animations.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Yellowtail&display=swap" rel="stylesheet">
<script>
document.addEventListener("DOMContentLoaded", function () {
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('animate');
}
});
},
{ threshold: 0.1 } // Adjust to when you want the animation to start
);
document.querySelectorAll('.animate-element').forEach((el) => {
observer.observe(el);
});
});
</script>
</head>
<body>
<!--Nav-bar-->
<div class="container-fluid">
<div class="row">
<nav class="navbar navbar-expand-lg custom-navbar pt-1 pb-1 col-12 fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#contact-me-section">
<img src="my-logo.jpg" class="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home-page-section">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-me-section">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills-section">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#my-work-section">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#resume-section">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-me-section">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<!--Home page-->
<div class=" container-fluid home-page text-center pt-5 pb-5" id="home-page-section">
<div class="row p-3">
<div class=" col-12 col-md-6 p-5 home-page-text slideInLeft animate">
<h1 class="home-page-tag-line">
Hello! I'm <span class="my-name">Geethika</span><br> a digital diva turning code into captivating creations.
Ready to mix some magic with professionalism?<br>
Let's make some tech-tastic dreams come true!
</h1>
<button class="btn know-more mt-3 slideInLeft animate animate-slow"><a class="know-more-a" href="#about-me-section">Learn more about me</a>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8"/>
</svg>
</button>
</div>
<div class="col-12 col-md-6 text-center pt-5 pb-5 animate-element">
<img src="my-image.jpg" class="my-image shadow" alt="my-image">
</div>
</div>
</div>
<!--About-Me Section-->
<div class="container-fluid about-me pt-5 pb-5" id="about-me-section">
<div class="row">
<div class="col-12 mt-5 mb-4">
<h1 class="about-me-heading">About Me:</h1>
<p class="intro-para">
Welcome to my digital realm!
Hi there! I'm Geethika, a Computer Science student who followed my passion from BiPC
into the world of coding and creativity. Turning ideas into visually stunning realities fuels my fire every day.
Known for my punctuality and genuine love for my work, I'm all about blending creativity with professionalism.
Join me on this tech adventure and let's make some digital magic happen together!
</p>
</div>
<div class="col-12 col-md-5 pl-2 pr-2 text-center animate-element">
<h1 class="timeline-sh mt-3 pt-5 d-xs-block d-none">Academic Background: </h1>
<img class="timeline-image shadow mt-2" src="timeline.png">
</div>
<div class="col-12 col-md-7">
<h1 class="timeline-sh mt-3 pt-5 d-none d-md-block">Academic Background: </h1>
<p class="timeline-desc mt-3">
<span class="timeline-sh">July 2020:</span> Graduated from Sri Somanatha Green Fields Public School, Bhoghapuram, AP.<br>
</p>
<p class="timeline-desc mt-3">
<span class="timeline-sh">May 2022:</span> Completed Intermediate from Sri Chaitanya Junior College.<br>
</p>
<p class="timeline-desc mt-3">
<span class="timeline-sh">2022 - Present:</span> Pursuing a Bachelor's degree in Computer Science at VVISM, affiliated to OU.<br>
</p>
<p class="timeline-desc mt-3">
<span class="timeline-sh">2024 - Present:</span> Enrolled in NxtWave's CCBP 4.0 program.<br>
</p>
</div>
<div class="col-12 col-md-7">
<h1 class="timeline-sh mt-3 pt-5">Passions and Interests: </h1>
<p class="timeline-desc ">
I'm driven by a fascination with web development and the transformative power of technology.
I love exploring the latest web advancements and incorporating them into my projects.
Participating in coding challenges and hackathons fuels my enthusiasm and sharpens my skills.
My commitment to continuous learning ensures that I stay updated on trends and best practices,
always striving to create efficient and innovative web solutions that meet user needs and business
goals.
When I'm not coding, you'll often find me exploring new places.
Traveling allows me to gain fresh perspectives and inspiration, which I bring back to my work.
Whether it's discovering new cultures or simply enjoying nature, these experiences enrich my creativity and
problem-solving abilities.
</p>
</div>
<div class="col-12 col-md-5 pl-2 pr-2 text-center">
<img class="Coding-travel shadow mt-2 animate-element" src="Coding-travel.jpeg">
</div>
<div class="col-12">
<p class="timeline-desc pt-4 mt-2">
<span class="timeline-sh">Short-Term Goals:</span> My immediate focus is on securing a stable and fulfilling job in
the field of web development, which will provide me with financial independence.
I am eager to apply my skills and knowledge to real-world projects, contributing to
meaningful and innovative web solutions.<br><br>
<span class="timeline-sh">Long-Term Aspirations:</span> Looking ahead, I aspire to work in an environment that offers
stability and peace, while also promoting career growth. My goal is to continuously
expand my expertise, take on challenging projects, and advance within the industry.<br><br>
<span class="timeline-sh">Professional Values:</span> I hold strong to the values of loyalty, sincerity, focus,
dedication, and team spirit. I believe that a collaborative and committed approach
leads to the most successful outcomes. Integrity and perseverance are at the core of my
work ethic, driving me to consistently deliver high-quality results.<br>
My journey is fueled by a deep passion for web development,
and I am dedicated to staying abreast of the latest advancements in the field.
By aligning my career with my values, I strive to make a positive impact through my work
and contribute to the ever-evolving landscape of technology.<br>
</p>
</div>
</div>
</div>
<!--Skills Section-->
<div class="projects container-fluid p-3 pt-5 pb-5 m-auto" id="skills-section">
<div class="row m-auto">
<div class="col-12 col-md-6 p-2 m-1 p-md-3 ts-container shadow animate-element">
<h1 class="projects-heading">Technical Skills: </h1>
<p class="ul-para">Languages: </p>
<ul>
<li class="ul-li"><span class="ul-span">HTML: </span> Crafting responsive layouts with semantic markup.</li>
<li class="ul-li"><span class="ul-span">CSS: </span> Designing visually appealing and interactive user interfaces.</li>
<li class="ul-li"><span class="ul-span">Java Script: </span> Basic knowledge for developing dynamic web elements.</li>
<li class="ul-li"><span class="ul-span">Python: </span> Basic scripting and automation tasks.</li>
</ul>
<p class="ul-para">Frameworks/Libararies: </p>
<ul>
<li class="ul-li"><span class="ul-span">Bootstrap: </span> Utilizing the Bootstrap framework for responsive and mobile-first web development.</li>
</ul>
</div>
<div class="col-12 col-md-5 p-2 m-1 p-md-3 ts-container shadow animate-element">
<h1 class="projects-heading">Soft Skills: </h1>
<ul>
<li class="ul-li"><span class="ul-span">Communication: </span> Clearly conveying ideas and collaborating effectively with team members.</li>
<li class="ul-li"><span class="ul-span">Leadership: </span> Guiding teams with confidence and ensuring successful project outcomes.</li>
<li class="ul-li"><span class="ul-span">Adaptabilty: </span> Quickly learning and applying new technologies and methodologies in changing environments.</li>
<li class="ul-li"><span class="ul-span">Time Management: </span> Prioritizing tasks efficiently to meet deadlines and maintain productivity.</li>
<li class="ul-li"><span class="ul-span">Attention to Detail: </span> Ensuring accuracy and quality in all aspects of work</li>
<li class="ul-li"><span class="ul-span">Self Motivation: </span> Proactively driving tasks and projects to completion without the need for constant supervision.</li>
</ul>
</div>
<div class="col-12 col-md-11 certifications shadow mt-3 animate-element">
<h1 class="projects-heading">Certifications: </h1>
<ul>
<li class="ul-li">
<h1 class="cert-sh">Oct 2024: </h1>
<p class="cert-p"> NxtCode - 7 Under 7 challenge</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">Sep 2024: </h1>
<p class="cert-p"> Project Completion by building a pitch ready product using Gen AI</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">May 2024: </h1>
<p class="cert-p"> Python Fundamentals</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">Apr 2024: </h1>
<p class="cert-p"> Database Programming with Oracle SQL</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">Feb 2023: </h1>
<p class="cert-p"> Digital Training on Microsoft Office 365 Productivity Suite Offerings
Beginners Course</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">Feb 2023: </h1>
<p class="cert-p"> Digital Training on Microsoft Word</p><br>
</li>
<li class="ul-li">
<h1 class="cert-sh">Feb 2018: </h1>
<p class="cert-p"> English Proficiency Course</p><br>
</li>
</ul>
</div>
</div>
</div>
<!--Projects Section-->
<div class="my-work container-fluid pt-5 pb-5" id="my-work-section">
<h1 class="my-work-heading p-2">Projects: </h1>
<div class="row">
<div class="proj-desc shadow pt-5 pb-5 m-auto mb-5">
<div class="col-12 col-md-11 m-auto p-0">
<h1 class="pro-head p-2">YouTube Project: </h1>
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="Yt-1.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="Yt-2.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="Yt-3.png" alt="Third slide">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="m-5 mb-3">
<h1 class="pro-head p-1 pl-md-3 m-1 m-md-3" style="display: inline;">Project Link:</h1>
<a href="https://youtube-clone-geeth.netlify.app/" class="pro-link" target="_blank">View Project</a>
</div>
</div>
<div class="col-12">
<h1 class="pro-head p-2 pl-3">Description: </h1>
<p class="pro-para p-3 pt-1">
This project is a static clone of YouTube's homepage.
It showcases my ability to recreate complex web interfaces using fundamental web technologies.
</p>
<h1 class="pro-head p-2 pl-3">Features: </h1>
<ul>
<li class="ul-li"><span class="ul-span">Responsive Design: </span> The layout adapts to various screen sizes, providing a seamless experience on desktops, tablets, and mobile devices.</li>
<li class="ul-li"><span class="ul-span">Static Homepage: </span> Includes video thumbnails, a search bar, and a sidebar similar to YouTube interface.</li>
<li class="ul-li"><span class="ul-span">Navigation Bar: </span> Features a styled navigation bar that enhances the user experience.</li>
</ul>
<h1 class="pro-head p-2 pl-3">Challenges Overcome: </h1>
<ul>
<li class="ul-li"><span class="ul-span">Responsiveness: </span> Ensured that the design was fully responsive and functional across different devices.</li>
<li class="ul-li"><span class="ul-span">Styling: </span> Implemented styling that closely mimics the original YouTube site, focusing on details like font choices, colors, and element placements.</li>
</ul>
</div>
</div>
<div class="proj-desc shadow pt-5 pb-5 m-auto mb-5">
<div class="col-12 col-md-11 m-auto p-0">
<h1 class="pro-head p-2">Food Delivery Project: </h1>
<div id="foodDeliveryCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="Fd-1.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="Fd-2.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="Fd-3.png" alt="Third slide">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#foodDeliveryCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#foodDeliveryCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="m-5 mb-3">
<h1 class="pro-head p-1 pl-md-3 m-1 m-md-3" style="display: inline;">Project Link: </h1>
<a href="https://geethz.ccbp.tech/" class="pro-link" target="_blank">View Project</a>
</div>
</div>
<div class="col-12">
<h1 class="pro-head p-2 pl-3">Description: </h1>
<p class="pro-para p-3 pt-1">
This project is a static webpage designed for a fictional food delivery service.
It showcases my ability to create engaging and visually appealing web pages using core web technologies.
</p>
<h1 class="pro-head p-2 pl-3">Features: </h1>
<ul>
<li class="ul-li"><span class="ul-span">Responsive Design: </span> The layout adapts to various screen sizes, providing a seamless experience on desktops, tablets, and mobile devices.</li>
<li class="ul-li"><span class="ul-span">Attractive Homepage: </span> Features high-quality images of food and an inviting layout that engages visitors.</li>
<li class="ul-li"><span class="ul-span">Static Sections: </span> Includes sections for menu items, customer reviews, and contact information to provide a comprehensive overview of the food delivery service.</li>
</ul>
<h1 class="pro-head p-2 pl-3">Challenges Overcome: </h1>
<ul>
<li class="ul-li"><span class="ul-span">Responsiveness: </span> Ensured that the webpage is fully responsive and works well across different devices.</li>
<li class="ul-li"><span class="ul-span">Design Consistency: </span> Maintained a consistent design language throughout the webpage, focusing on colors, fonts, and layout.</li>
</ul>
</div>
</div>
</div>
</div>
<!--Resume Section-->
<div class="resume-section m-5 mt-0 p-3 pt-5 pb-5 text-center" id="resume-section">
<h1 class="pro-head" style="display: inline;">You can download my resume here: </h1>
<a href="resume.pdf" download="Geethika_Resume" class="btn download-button" target="_blank">Download Resume</a>
</div>
<!--Contact-me Section-->
<div class="contact-me p-3 pt-5 pb-5 p-sm-3 col-12 container" id="contact-me-section">
<div class="for-border d-flex row">
<div class="cards col-12 col-md-6 p-4 ">
<img src="my-logo.jpg" class="my-logo animate-element w-100">
</div>
<div class="inner-cont-box p-4 col-12 col-md-5">
<h1 class="contact-head ">Contact Me: </h1><br>
<h1 class="ic-sh">Email: </h1>
<p class="ic-p"> dssgeethika@gmail.com</p><br>
<h1 class="ic-sh">LinkedIn: </h1>
<p class="ic-p"> <a class="con-info" href="https://www.linkedin.com/in/geethikadevarakonda/" target="_blank">My LinkedIn</a></p><br>
<h1 class="ic-sh">Github: </h1>
<p class="ic-p"><a class="con-info" href="https://github.com/Geethz-Dev" target="_blank">My Github</a> </p><br>
</div>
</div>
</div>
</body>
</html>