-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
497 lines (466 loc) · 18.8 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
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
<!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>Myportfolio</title>
<meta name="description" content="Portfolio Template for Developer" />
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<div class="header__content">
<div class="header__logo-container">
<div class="header__logo-img-cont">
<img
src="./assets/png/Govind.png"
alt="Ram Maheshwari Logo Image"
class="header__logo-img"
/>
</div>
<span class="header__logo-sub">Govind Bairi</span>
</div>
<div class="header__main">
<ul class="header__links">
<li class="header__link-wrapper">
<a href="./index.html" class="header__link"> Home </a>
</li>
<li class="header__link-wrapper">
<a href="./index.html#about" class="header__link">About </a>
</li>
<li class="header__link-wrapper">
<a href="./index.html#projects" class="header__link">
Projects
</a>
</li>
<li class="header__link-wrapper">
<a href="./index.html#Certications" class="header__link">
Certications
</a>
</li>
<li class="header__link-wrapper">
<a href="./index.html#contact" class="header__link"> Contact </a>
</li>
</ul>
<div class="header__main-ham-menu-cont">
<img
src="./assets/svg/ham-menu.svg"
alt="hamburger menu"
class="header__main-ham-menu"
/>
<img
src="./assets/svg/ham-menu-close.svg"
alt="hamburger menu close"
class="header__main-ham-menu-close d-none"
/>
</div>
</div>
</div>
<div class="header__sm-menu">
<div class="header__sm-menu-content">
<ul class="header__sm-menu-links">
<li class="header__sm-menu-link">
<a href="./index.html"> Home </a>
</li>
<li class="header__sm-menu-link">
<a href="./index.html#about"> About </a>
</li>
<li class="header__sm-menu-link">
<a href="./index.html#projects"> Projects </a>
</li>
<li class="header__sm-menu-link">
<a href="./index.html#Certications"> Certications</a>
</li>
<li class="header__sm-menu-link">
<a href="./index.html#contact"> Contact </a>
</li>
</ul>
</div>
</div>
</header>
<section class="home-hero" id="bubbleArea">
<script>
const bubbleArea = document.getElementById('bubbleArea');
// Function to create bubbles with an image
function createBubble(x, y) {
const bubble = document.createElement('span');
bubble.classList.add('bubble');
// Randomize size of the bubbles
const size = Math.random() * 40 + 30; // Random size between 30px and 70px
bubble.style.width = `${size}px`;
bubble.style.height = `${size}px`;
// Set the background image (use your own image URL here)
bubble.style.backgroundImage = 'url("your-image.jpg")';
// Position the bubble where the mouse is
bubble.style.left = `${x - size / 2}px`;
bubble.style.top = `${y - size / 2}px`;
// Append the bubble to the bubbleArea
bubbleArea.appendChild(bubble);
// Remove the bubble after animation
setTimeout(() => {
bubble.remove();
}, 3000); // Adjust time if needed
}
// Event listener to create bubbles when the mouse moves over the bubbleArea
bubbleArea.addEventListener('mousemove', (e) => {
const rect = bubbleArea.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
createBubble(x, y);
});
</script>
<div class="home-hero__content">
<p class="text-primary">
Hi, My name is
</p>
<h1 class="heading-primary"> Govind.</h1>
<div class="home-hero__info">
<h2 class="text-primarys">I'm a 👨🏻💻 freelancer </h2>
</div>
<div class="para">
<p>Creative Web Developer and Designer, delivering innovative,
high-quality digital <br> solutions tailored to client needs, and
a passionate problem-solver.</p>
</div>
<div class="home-hero__cta">
<a href="./#projects" class="btn btn--bg">Projects</a>
</div>
</div>
<div class="home-hero__socials">
<div class="home-hero__social">
<a href="https://www.linkedin.com/in/govind-bairi-392482224/" class="home-hero__social-icon-link">
<img src="./assets/png/linkedin-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
<div class="home-hero__social">
<a href="https://github.com/govindbairi" class="home-hero__social-icon-link">
<img src="./assets/png/github-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
<div class="home-hero__social">
<a href="https://leetcode.com/u/govindbairi/" class="home-hero__social-icon-link">
<img src="./assets/png/leetcode-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
<div class="home-hero__social">
<a href="https://www.geeksforgeeks.org/user/govindbairi/" class="home-hero__social-icon-link">
<img src="./assets/png/gfg-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
<div class="home-hero__social">
<a href="https://www.youtube.com/@govindarao331" class="home-hero__social-icon-link">
<img src="./assets/png/yt-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
<div class="home-hero__social">
<a href="https://www.instagram.com/govind_bairi/" class="home-hero__social-icon-link">
<img src="./assets/png/insta-ico.png" alt="icon" class="home-hero__social-icon" />
</a>
</div>
</section>
<section id="about" class="about sec-pad">
<div class="main-container">
<h2 class="heading heading-sec heading-sec__mb-med">
<span class="heading-sec__main">About Me</span>
<span class="heading-sec__sub">
Hello, I'm Govind Bairi, a third-year Computer Science student at GVP College
and a Fullstack Developer . I’ve engaged in remote projects for various agencies,
provided consulting for startups, and worked with AWS Cloud and Google AI/ML technologies.
</span>
</h2>
<div class="about__content">
<div class="about__content-main">
<h3 class="about__content-title">Get to know me!</h3>
<div class="about__content-details">
<p class="about__content-details-para">
Hey! It's
<strong>Govind Bairi</strong>
and I'm a <strong> Fullstack Developer </strong> located in
Vizag.
I’ve engaged in <strong> remote projects</strong> for various agencies,
provided consulting for startups, and worked with AWS Cloud
and Google AI/ML technologies, collaborating with diverse teams
to drive innovative solutions.
</p>
<p class="about__content-details-para">
I'm a bit of a digital product junky. Over the years, I've used
hundreds of web and mobile apps in different industries and
verticals. Feel free to
<strong>contact</strong> me here.
</p>
</div>
<a href="./#contact" class="btn btn--med btn--theme dynamicBgClr"
>Contact</a
>
</div>
<div class="about__content-skills">
<h3 class="about__content-title">My Skills</h3>
<div class="skills">
<div class="skills__skill">HTML</div>
<div class="skills__skill">CSS</div>
<div class="skills__skill">JavaScript</div>
<div class="skills__skill">C++</div>
<div class="skills__skill">Python</div>
<div class="skills__skill">Fastapi</div>
<div class="skills__skill">Nodejs</div>
<div class="skills__skill">Expressjs</div>
<div class="skills__skill">Mongodb</div>
<div class="skills__skill">Wordpress</div>
<div class="skills__skill">Aws S3</div>
<div class="skills__skill">Adobe Photoshop</div>
<div class="skills__skill">Adobe illustrator</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="projects sec-pad">
<div class="main-container">
<h2 class="heading heading-sec heading-sec__mb-bg">
<span class="heading-sec__main">Projects</span>
<span class="heading-sec__sub">
During My Diploma and Btech,I have Completed 10+ Projects
</span>
</h2>
<div class="projects__content">
<div class="projects__row">
<div class="projects__row-img-cont">
<img
src="./assets/jpeg/project1.png"
alt="Software Screenshot"
class="projects__row-img"
loading="lazy"
/>
</div>
<div class="projects__row-content">
<h3 class="projects__row-content-title">GTuber</h3>
<p class="projects__row-content-desc">
GTuber is a simple web application that allows users to download
YouTube videos quickly by pasting the video link. It supports multiple
formats and resolutions, making video downloading fast and easy.
</p>
<a
href="https://gtuber-1.onrender.com/"
class="btn btn--med btn--theme dynamicBgClr"
target="_blank"
>Case Study</a
>
</div>
</div>
<div class="projects__row">
<div class="projects__row-img-cont">
<img
src="./assets/jpeg/project2.png"
alt="Software Screenshot"
class="projects__row-img"
loading="lazy"
/>
</div>
<div class="projects__row-content">
<h3 class="projects__row-content-title">Rama Graphics</h3>
<p class="projects__row-content-desc">
The project aims to revolutionize the photography and frame design
industry by providing a dynamic platform for photographers and customers
to connect and collaborate. Rama Graphics enables seamless uploading, buying,
and selling of premium templates, including PSDs and JPGs, tailored for various
events like Half-Saree ceremonies, Pre-Wedding shoots, Post-Wedding memories, Haldi rituals,
Drone photography, and Baby Birthday shoots.
</p>
<a
href="https://website-com-1.onrender.com/"
class="btn btn--med btn--theme dynamicBgClr"
target="_blank"
>Case Study</a
>
</div>
</div>
<div class="projects__row">
<div class="projects__row-img-cont">
<img
src="./assets/png/project3.png"
alt="Software Screenshot"
class="projects__row-img"
loading="lazy"
/>
</div>
<div class="projects__row-content">
<h3 class="projects__row-content-title">Project prabhujya</h3>
<p class="projects__row-content-desc">
Prabhujya is a community project that facilitates the donation of
surplus food to individuals in need through local volunteers. The initiative <br>
aims to address food insecurity by ensuring efficient distribution within nearby communities.
</p>
<a
href="./assets/png/project3.png"
class="btn btn--med btn--theme dynamicBgClr"
target="_blank"
>Case Study</a
>
</div>
</div>
</div>
</div>
</section>
<section id="Certications" class="achieveclass">
<h1>Certications</h1>
<div class="gallery">
<div class="gallery-item">
<img src="./assets/png/Cer1.png" alt="Beach 1">
<h2 class="p1">This is my first certificate</h2>
</div>
<div class="gallery-item">
<img src="./assets/png/cer2.png" alt="Beach 2">
<h2 class="p2">This is my second certificate</h2>
</div>
<div class="gallery-item">
<img src="./assets/png/cer3.png" alt="Beach 3">
<h2 class="p3">This is my third certificate</h2>
</div>
<div class="gallery-item">
<img src="./assets/png/cer4.png" alt="Beach 4">
<h2 class="p4">This is my fourth certificate</h2>
</div>
</div>
</section>
<div id="lightbox" class="lightbox">
<span class="close" onclick="closeLightbox()">×</span>
<img id="lightbox-img" src="" alt="lightbox image">
</div>
<script>
const images = document.querySelectorAll('.gallery img');
const lightbox = document.getElementById('lightbox');
const lightboxImg = document.getElementById('lightbox-img');
images.forEach(image => {
image.addEventListener('click', () => {
lightbox.style.display = 'flex';
lightboxImg.src = image.src;
});
});
function closeLightbox() {
lightbox.style.display = 'none';
}
</script>
<section id="contact" class="contact sec-pad dynamicBg">
<div class="main-container">
<h2 class="heading heading-sec heading-sec__mb-med">
<span class="heading-sec__main heading-sec__main--lt">Contact</span>
<span class="heading-sec__sub heading-sec__sub--lt">
You can contact me directly at 9491496815 or simply fill the beow form.<br>
I’d be more than happy to discuss how we can work together to achieve your goals.
</span>
</h2>
<div class="contact__form-container">
<form action="#" class="contact__form">
<div class="contact__form-field">
<label class="contact__form-label" for="name">Name</label>
<input
required
placeholder="Enter Your Name"
type="text"
class="contact__form-input"
name="name"
id="name"
/>
</div>
<div class="contact__form-field">
<label class="contact__form-label" for="email">Email</label>
<input
required
placeholder="Enter Your Email"
type="text"
class="contact__form-input"
name="email"
id="email"
/>
</div>
<div class="contact__form-field">
<label class="contact__form-label" for="message">Message</label>
<textarea
required
cols="30"
rows="10"
class="contact__form-input"
placeholder="Enter Your Message"
name="message"
id="message"
></textarea>
</div>
<button type="submit" class="btn btn--theme contact__btn">
Submit
</button>
</form>
</div>
</div>
</section>
<footer class="main-footer">
<div class="main-container">
<div class="main-footer__upper">
<div class="main-footer__row main-footer__row-1">
<h2 class="heading heading-sm main-footer__heading-sm">
<span>Social</span>
</h2>
<div class="main-footer__social-cont">
<a target="_blank" rel="noreferrer" href="#">
<img
class="main-footer__icon"
src="./assets/png/linkedin-ico.png"
alt="icon"
/>
</a>
<a target="_blank" rel="noreferrer" href="#">
<img
class="main-footer__icon"
src="./assets/png/github-ico.png"
alt="icon"
/>
</a>
<a target="_blank" rel="noreferrer" href="#">
<img
class="main-footer__icon"
src="./assets/png/twitter-ico.png"
alt="icon"
/>
</a>
<a target="_blank" rel="noreferrer" href="#">
<img
class="main-footer__icon"
src="./assets/png/yt-ico.png"
alt="icon"
/>
</a>
<a target="_blank" rel="noreferrer" href="#">
<img
class="main-footer__icon main-footer__icon--mr-none"
src="./assets/png/insta-ico.png"
alt="icon"
/>
</a>
</div>
</div>
<div class="main-footer__row main-footer__row-2">
<h4 class="heading heading-sm text-lt">Govindbairi</h4>
<p class="main-footer__short-desc">
Thank you so much for visiting! Your time and interest mean a lot to me. <br>
If you have any questions feedback, or just want to chat, please don’t <br>hesitate to reach out.
I’m here to help and would love to hear from you!
</p>
</div>
</div>
<div class="main-footer__lower">
© Copyright 2024. Made by
<a rel="noreferrer" target="_blank" href="[email protected]"
>Govind Bairi</a
>
</div>
</div>
</footer>
<script src="./index.js"></script>
</body>
</html>