-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
772 lines (634 loc) · 37.5 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
<!--
Author: Rajdeep Das
Author's GITHUB Profile: https://github.com/Rajspeaks
Author's LinkedIn profile: https://linkedin.com/in/itsrajdeepdas
Author's Twitter Handle: https://twitter.com/itsrajdeepdas
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rajdeep Das</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords" content="Rajdeep Das Blogger Rajdeep Das Developer Master of Computer Application TheTechLearner HackiTalki" />
<script>
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- //Meta tag Keywords -->
<!-- Custom-Files -->
<link rel="icon" type="image/x-icon" href="images/banner.jpg">
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Bootstrap-Core-CSS -->
<link href="css/simpleLightbox.css" rel='stylesheet' type='text/css' />
<link href="css/roadmap.css" rel="stylesheet" type="text/css" />
<!-- Banner-Slider-CSS -->
<!-- <link rel="stylesheet" href="css/snow.css"> -->
<link rel="stylesheet" href="css/aos.css">
<link href='css/aos-animation.css' rel='stylesheet prefetch' type="text/css" media="all" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!-- Style-CSS -->
<link rel="stylesheet" href="css/fontawesome-all.css">
<!-- Font-Awesome-Icons-CSS -->
<!-- /Fonts -->
<link href="//fonts.googleapis.com/css?family=Roboto:100,100i,300,400,400i,500,500i,700,700i,900" rel="stylesheet">
<!-- //Fonts -->
</head>
<body>
<!-- mian-content -->
<header class="index-banner" id="home">
<!-- nav -->
<nav class="main-header d-flex">
<div id="menu", style="margin-right:290px;">
<div id="menu-toggle">
<div id="menu-icon">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
<ul class="text-center nav-honey">
<li>
<a href="index.html" class="active ">Home</a>
</li>
<li>
<a class="scroll" href="#about">About</a>
</li>
<li>
<a class="scroll" href="#services">Hobbies</a>
</li>
<li>
<a class="scroll" href="#projects">Gallery</a>
</li>
<li>
<a class="scroll" href="#contact">Contact</a>
</li>
</li>
</ul>
</div>
<div class="clearfix"></div>
</nav>
<!-- //nav -->
<!-- banner -->
<div class="banner_section">
<div class="snow-container" style="margin-right:100px;">
<div class="snow foreground" style="margin-right:100px;"></div>
<div class="snow foreground layered" style="margin-right:100px;"></div>
<div class="snow middleground" style="margin-right:100px;"></div>
<div class="snow middleground layered" style="margin-right:100px;"></div>
<div class="snow background" style="margin-right:100px;"></div>
<div class="snow background layered" style="margin-right:100px;"></div>
</div>
<div class="banner-info text-uppercase">
<h3 data-text="Hello Universe!">Hello Universe!</h3>
<h5 data-aos="fade-right">Glad to have you in my galaxy!</h5>
<div class="ban-buttons mt-3" data-aos="fade-right">
<a class="btn work scroll" href="#about"><b>Let's ride over the stars! </b></a>
</div>
</div>
</div>
<!-- //banner -->
</header>
<!-- //header -->
<!--// banner-slider -->
<!-- banner-bottom-wthree -->
<section class="banner-bottom-wthree py-lg-5 py-md-5 py-4" id="about">
<div class="container">
<div class="inner-sec-w3ls py-lg-5 py-4">
<div class="info-about text-center">
<h2 class="sub-tittle-w3">About Me</h2>
<br>
<p> <img class="dp" src="images/dp.jpg", height="200" width="150" style="border-radius:150px; box-shadow: 10px 10px 10px; border-color:green;">
<i>So who am I?!</i>- <b> An IT professional, currently working in Oracle ERP domain at Cognizant, India. Apart from that, a hobbyist blogger & founder of <a href="https://thetechlearner.wordpress.com" style="text-decoration:none;" target= "_blank"> @TheTechLearner</a> </b>
<p> A simple guy with a strong believe and vision in eye!
Exploring to discover a newer version of mine while trying to be upgraded a little. </p>
<p>
An occational shutterbug and a bibliophile who is also obsessed with retro musics & stuck into uncountable daydreams in eyes.
A tech-nomad by brain but filled with the flavour of creativity in heart, consisting lots of hobbies, passions, ideas and my late night puzzled thoughts which I often share in my writings!
</p>
</p>
<p align="center"> <a href="https://iamrajdeep.wordpress.com/about/", style="text-decoration:none;", target="_blank"> <b>Want to know more about me?! Head over to HERE</b></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--// ab -->
<!-- /services -->
<section class="services py-md-5 py-4" id="services">
<div class="container">
<div class="inner-sec-w3ls py-md-5 py-4">
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center text-white">Hobbies & passions of a puzzled boy!</h3>
<div class="price-right">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">
<div class="menu-grids mt-4">
<div class="row t-in">
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<img align="center" src = "https://media2.giphy.com/media/QssGEmpkyEOhBCb7e1/giphy.gif?cid=ecf05e47a0n3gi1bfqntqmob8g9aid1oyj2wr3ds3mg700bl&rid=giphy.gif" width = 70px>
<p><h5 class="card-title text-uppercase">Coding</h5></p>
<p class="card-text">Exporing & Developing my own castle on the Web!</p>
<p class="card-text"><a href="https://github.com/Rajspeaks", style="text-decoration:none;color:yellow;", target="_blank"><b>Check out my GITHUB Profile!</b></a></p>
<p class="card-text"><a href="https://rajdeepdascv.netlify.app", style="text-decoration:none;color:yellow;", target="_blank"><b>See my Web-Resume!</b></a></p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<img align="center", src="images/blogging.png" height="70" width="70">
<p><h5 class="card-title text-uppercase">Blogging</h5></p>
<p class="card-text">A kind of person who believes in the feelings of Words!</p>
<p class="card-text"><a href="https://iamrajdeep.wordpress.com", style="text-decoration:none;color:yellow;", target="_blank"><b>Visit my PERSONAL BLOG!</b></a></p>
<p class="card-text"><a href="https://thetechlearner.wordpress.com", style="text-decoration:none;color:yellow;", target="_blank"><b>OFFICIAL TECH-BLOG!</b></a></p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<img align="center", src="images/port.jpg" height="86" width="86">
<h5 class="card-title text-uppercase">Dev Folio!</h5>
<p class="card-text"></p>
<p class="card-text">Curious to know a little more! Have a look at my Dev-folio! </p>
<p class="card-text"><a href="https://rajspeaks.github.io/developer-port", style="text-decoration:none;color:yellow;", target="_blank"><b>My Developer potfolio...</b></a></p>
<p class="card-text"><a href="https://rajdeepdas.bio.link/", style="text-decoration:none;color:yellow;", target="_blank"><p class="card-text"><b>Bio-link profile...</b></a></p>
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-body">
<img align="center" src = "https://media1.giphy.com/media/JZ40cnfnN11KycrvMF/giphy.gif?cid=ecf05e47a0n3gi1bfqntqmob8g9aid1oyj2wr3ds3mg700bl&rid=giphy.gif" width = 90px>
<h5 class="card-title text-uppercase">Cyber-nerd</h5>
<p class="card-text">Digging the hell to bring the heaven in life!</p>
<p class="card-text">While exploring the web, I often like to see through the loopholes as well! </p>
<p class="card-text"><a href="https://hackitalki.home.blog", style="text-decoration:none;color:yellow;", target="_blank"><b>Visit my INFOSEC BLOG!</b></a></p>
<p class="card-text"><a href="https://rajdeepblog.medium.com", style="text-decoration:none;color:yellow;", target="_blank"><b>Visit my MEDIUM Profile!</b></a></p>
</div>
</div>
</div>
-->
<!-- <div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<i class="far fa-heart mb-4"></i>
<h5 class="card-title">Cloud Rider</h5>
<p class="card-text">Long ago I used to dream about to fly over the clouds in the sky! Maybe I've fulfilled a little but in a different version!</p>
<p class="card-text">Google Cloud is my recent love interest but not sure to marry as I have some other affections on AWS & Azure too!! </p>
<p class="card-text">P.S.: I'm still in deep love with nature clouds! </p>
<p class="card-text"><a href="https://google.qwiklabs.com/public_profiles/54c0dd8b-b06d-4c21-8aaf-512d8e22704e", style="text-decoration:none;color:yellow;", target="_blank"><b>Visit to see my Travelling Story throughout the Google Clouds right here!</b></a></p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<img align ='center' src='https://media2.giphy.com/media/UQDSBzfyiBKvgFcSTw/giphy.gif?cid=ecf05e47p3cd513axbek3f56ti3jzizq8hincw20jauyyfyw&rid=giphy.gif' width = '75px'>
<h5 class="card-title text-uppercase">Special Talent!</h5>
<p class="card-text">Overthinking!</p>
<p class="card-text">A passionate overthinker whose rate of overthinking is faster than his Internet Speed!</p>
<p class="card-text">Honestly, A daydreamer with lots of surrounded unsolved mystery in life!</p>
<p class="card-text">Are you also an overthinker?!</p>
<p class="card-text"><a href="https://twitter.com/itsrajdeepdas", style="text-decoration:none;color:yellow;", target="_blank"><b> Catch me on Twitter </b></a></p>
<p class="card-text"><a href="https://linkedin.com/in/itsrajdeepdas", style="text-decoration:none;color:yellow;", target="_blank"><b> Connect me on LinkedIn </b></a></p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<i class="far fa-clone mb-4"></i>
<h5 class="card-title text-uppercase">Shutterbug!</h5>
<p class="card-text"></p>
<p class="card-text">Not a photographer but sometimes I try to capture my views!- An occational mobile-clicker! </p>
<p class="card-text">Nature attracts me so much, even more than a magnet does to iron!</p>
<p class="card-text"><a href="https://instagram.com/itz__rajj", style="text-decoration:none;color:yellow;", target="_blank"><b>Spread Love to my clicks!!..</b></a></p>
<p class="card-text"><a href="https://shutterbugstudio.photo.blog", style="text-decoration:none;color:yellow;", target="_blank"><p class="card-text"><b>Hey, something is being built behind!!..</b></a></p>
</div>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //services -->
<!-- /experience -->
<section class="experience py-lg-5 py-4" id="experience">
<div class="timeline py-lg-5 py-3">
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">Academics</h3>
<div id="my-timeline"></div>
</div>
<p align="center"><a href="https://github.com/Rajspeaks/Rajdeep_Das_Certifications_Achievements", style="text-decoration:none;", target="_blank"><b>Check out some of my course certifications & achievements.</b></a></p>
<br>
</section>
<!-- //experience -->
<!--gallery -->
<section class="gallery py-md-5 py-3" id="projects">
<div class="gallery-inner container py-md-5 pb-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">Achievements are the fuel behind my motivation</h4>
<br>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">Accomplishments</h3>
<div class="row">
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="Swami Vivekananda Talent Prize, Kits for successful passout in 10th & 12th Standard with above 60-70% Marks, organized by West Bengal Transport Corportion Cooperative Department" href="images/g1.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g1.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>zoom it</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Swami Vivekananda Talent Prize-Memento for securing above 60-70% marks in 12th Standard Higher Secondary Examination, awarded by West Bengal State Govt. of India" href="images/g2.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g2.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>
<!-- <div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Swami Vivekananda Talent Prize-Memento for securing above 70-80% marks in 10th Standard Final Examination, awarded by West Bengal State Govt. of India " href="images/g3.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g3.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>-->
</div>
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="ATA Infotech Ventures Pvt. Ltd. Certificate Awarding for successful IT training on College Projects", " href="images/g4.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g4.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>
<!-- <div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Swami Vivekananda Talent Prize, Kits for successful passout in 10th & 12th Standard with above 60-70% Marks, organized by West Bengal Transport Corportion Cooperative Department", href="images/g5.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g5.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div> -->
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Swami Vivekananda Talent Prize-Memento for securing above 70-80% marks in 10th Standard Final Examination, awarded by West Bengal State Govt. of India " href="images/g6.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g6.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="Receving Post Grad degree at HIT-K 6th Graduation Ceremony 2023" href="images/g7.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g7.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>
<!-- <div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Google Local Guide Perks for Top Contributing on Google Map, especially in Kolkata, India" href="images/g8.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g8.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Hacktoberfest 2020 Swag kit for successful open source contribution on GitHub" href="images/g9.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g9.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Zoom it</h3>
</div>
</div>
</a>
</div> -->
</div>
<!--end portfolio-area -->
</div>
<!-- //gallery container -->
</div>
</section>
<!-- //gallery -->
<!--/stats-->
<section class="stats py-lg-5 py-4" id="stats">
<div class="gallery-inner container py-md-5 py-4">
<div class="row mt-lg-5 stats-con text-white">
<!-- <h3>My GitHub Stats</h3>
<div id="Container"
style="padding-bottom:56.25%; position:relative; display:block; width: 100%">
<iframe id="githubstat" width="100%" height="100%" src="https://github-readme-stats.vercel.app/api?username=Rajspeaks&show_icons=true&theme=vue-dark" frameborder="0" allowfullscreen="" style="position:absolute; top:0; left: 0"></iframe>
</div> -->
</div>
</div>
</section>
<!--//stats-->
<!-- /testimonials -->
<div class="testimonials py-lg-5 py-4" id="clients">
<div class="testimonials-inner container py-lg-4 py-3">
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">I strongly believe:</h3>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="testimonials_grid center">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>Failure will never overtake me if my definition of succeeding is strong enough”</p>
</div>
<h3><a href="https://en.wikipedia.org/wiki/A._P._J._Abdul_Kalam", style="text-decoration:none;", target="_blank" >Dr. A.P.J. Abdul Kalam</a></h3>
<label>India</label>
</div>
</div>
<div class="carousel-item">
<div class="testimonials_grid text-center">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>Talk to yourself once in a day, otherwise you may miss meeting an intelligent person in this world.</p>
</div>
<h3><a href="https://en.wikipedia.org/wiki/Swami_Vivekananda", style="text-decoration:none;", target="_blank">Swami Vivekananda</a>
</h3>
<label>India</label>
</div>
</div>
<div class="carousel-item">
<div class="testimonials_grid">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>Education is the best friend. An educated person is respected everywhere. Education beats the beauty and the youth.</p>
</div>
<h3><a href="https://en.wikipedia.org/wiki/Chanakya", style="text-decoration:none;", target="_blank">Chanakya Kautilya</a>
</h3>
<label>India</label>
</div>
</div>
<a class="carousel-control-prev test" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="fas fa-long-arrow-alt-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next test" href="#carouselExampleControls" role="button" data-slide="next">
<span class="fas fa-long-arrow-alt-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- //testimonials -->
<!-- /Contact-->
<section class="contact py-lg-5 py-md-5 py-3" id="contact">
<div class="container">
<div class="inner-sec-w3ls py-lg-5 py-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">Get in touch</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center text-white">Contact details</h3>
<div class="address row mt-lg-5">
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="far fa-map"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Address</h6>
<p> Kolkata, India
</p>
</div>
</div>
</div>
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="far fa-envelope"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Email</h6>
<p>Email :
<a href="mailto:[email protected]", style="text-decoration:none;", target="_blank"> Tap or click to mail me</a>
</p>
</div>
</div>
</div>
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="fas fa-mobile-alt"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Phone</h6>
<p>Phone:
<a href="#", style="text-decoration:none;", target="_blank"> Phone</a>
</p>
</div>
</div>
</div>
<p align="center">
<code><a href="https://twitter.com/itsrajdeepdas"><img src="https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white"></a></code>
<code><a href="https://linkedin.com/in/itsrajdeepdas"><img src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a></code>
<code><a href="https://gitlab.com/Rajspeaks"><img src="https://img.shields.io/badge/GitLab-330F63?style=for-the-badge&logo=gitlab&logoColor=white"></a></code>
<code><a href="https://www.youtube.com/channel/UCSYftgkB9hzEW4haNCCs0jw"><img src="https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white"></a></code>
<code><a href="https://medium.com/@iamrajdeep"><img src="https://img.shields.io/badge/Medium-12100E?style=for-the-badge&logo=medium&logoColor=white"></a></code>
<code><a href="https://iamrajdeep.wordpress.com"><img src="https://img.shields.io/badge/Wordpress-21759B?style=for-the-badge&logo=wordpress&logoColor=white"></a></code>
</p>
</div>
</div>
</section>
<!-- //Contact -->
<!--/footer-->
<footer class="footer text-left" id = "thankyou">
<div class="container py-4 py-sm-5">
<div class="row py-sm-4 py-3">
<div class="col-lg-2 col-md-4">
<ul class="list-footer" data-aos="fade-up">
<li>
<a href="#home" class="nav-link scroll">
Home
</a>
</li>
<li class="my-2">
<a href="#about" class="nav-link scroll">
About
</a>
</li>
<li class="my-2">
<a href="#services" class="nav-link scroll">
Hobbies
</a>
</li>
<li class="mb-2">
<a href="#projects" class="nav-link scroll">
Gallery
</a>
</li>
<li>
<a href="#contact" class="nav-link scroll">
Contact
</a>
</li>
</ul>
</div>
<div class="offset-lg-4"></div>
<div class="col-lg-4 footer-end-grid mt-md-0 mt-sm-5" data-aos="fade-up">
<h2>
<a href="index.html">
<br>Thank you
</a>
</h2>
</div>
</div>
<hr>
<div class="d-flex justify-content-between pt-lg-3 footer-bottom-cpy">
<div class="copy-right-w3ls">
<p>© All rights are reserved | Website designed by
<a href="http://github.com/Rajspeaks"> Rajdeep Das </a>
</p>
</div>
<div class="social-content pb-md-0 pb-4">
<ul class="social-icons text-center d-flex">
<li>
<a href="https://facebook.com/rajdeep.developer">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com/itsrajdeepdas">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/in/itsrajdeepdas">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!--//footer-->
<script src="js/jquery-2.2.3.min.js"></script>
<!-- banner-type-text -->
<script src='js/aos.js'></script>
<script>
AOS.init({
easing: 'ease-out-back',
duration: 1000
});
</script>
<!-- sticky nav bar-->
<script>
$(() => {
//On Scroll Functionality
$(window).scroll(() => {
var windowTop = $(window).scrollTop();
windowTop > 100 ? $('nav').addClass('navShadow') : $('nav').removeClass('navShadow');
windowTop > 100 ? $('ul.nav-honey').css('top', '50px') : $('ul.nav-honey').css('top', '160px');
});
//Click Logo To Scroll To Top
$('#logo').on('click', () => {
$('html,body').animate({
scrollTop: 0
}, 500);
});
// //Smooth Scrolling Using Navigation Menu
// $('a[href*="#"]').on('click', function(e) {
// $('html,body').animate({
// scrollTop: $($(this).attr('href')).offset().top - 100
// }, 500);
// e.preventDefault();
// });
//Toggle Menu
$('#menu-toggle').on('click', () => {
$('#menu-toggle').toggleClass('closeMenu');
$('ul').toggleClass('showMenu');
$('li').on('click', () => {
$('ul').removeClass('showMenu');
$('#menu-toggle').removeClass('closeMenu');
});
});
});
</script>
<!-- //sticky nav bar -->
<!-- Include jQuery Timeline Plugin -->
<script src="js/jquery.roadmap.js"></script>
<script>
$(document).ready(function() {
var events = [
{
date: '2022-Present',
content: 'Cognizant Technology Solutions India Pvt. Ltd. <small>Oracle EAS Solution Developer</small>'
},
{
date: '2019 - 2022',
content: 'Heritage Institute of Technology <small>Master of Computer Application</small>'
},
{
date: '2016-2019',
content: 'Netaji Subhash Engineering College <small> Bachelor of Computer Application</small>'
},
{
date: '2016',
content: 'Jadavpur Vidyapith <small>upto 12th Standard</small>'
},
{
date: '2014',
content: 'Jadavpur Vidyapith <small>upto 10th Standard</small>'
}
];
$('#my-timeline').roadmap(events, {
eventsPerSlide: 6,
slide: 1,
prevArrow: '<i class="fas fa-chevron-left"></i>',
nextArrow: '<i class="fas fa-chevron-right"></i>'
});
});
</script>
<!-- simpleLightbox -->
<script src="js/simpleLightbox.js"></script>
<script>
$('.proj_gallery_grid a').simpleLightbox();
</script>
<!-- //simpleLightbox -->
<!-- stats -->
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.countup.js"></script>
<script>
$('.counter').countUp();
</script>
<!-- //stats -->
<script src="js/bootstrap.js"></script>
</body>
</html>