-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
929 lines (771 loc) · 45.4 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
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Devlover’</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/code-512.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: FlexStart - v1.3.0
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<audio autoplay>
<source src="music/We Empower Hackers (1).mp3" type="audio">
</audio>
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/logo.gif" alt="">
<span>Devlover’</span>
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#portfolio">Teams</a></li>
<li><a href="https://develover.hashnode.dev/">Blog</a></li>
<li class="dropdown"><a href="#"><span>Courses</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="https://www.udemy.com/course/web-design-secrets/">Web Development</a></li>
<li class="dropdown"><a href="#"><span>Ethical Hacking</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="https://www.cybrary.it/course/ethical-hacking/">Penetration Testing</a></li>
<li><a href="https://www.cybrary.it/catalog/career-path/soc-analyst-level-1/">SOC Analyst</a></li>
<li><a href="https://www.cybrary.it/course/comptia-security-plus/">CompTIA Security+</a></li>
<li><a href="https://www.cybrary.it/course/kali-linux-fundamentals/">Kali Linux Fundamentals</a></li>
<li><a href="https://www.cybrary.it/course/owasp/">OWASP Top 10</a></li>
</ul>
</li>
<li><a href="https://www.udemy.com/course/unity-game-developer/">Game Development</a></li>
<li><a href="https://www.udemy.com/course/data-structures-and-algorithms-in-c/">Datastructure & Algorithm</a></li>
<li><a href="https://www.udemy.com/course/diploma-in-python-programming-certification/">Machine Learning</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li><a class="getstarted scrollto" href="https://linktr.ee/Ananya10">Get Started</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up">Our mission is to Empower Hackers.</h1>
<h2 data-aos="fade-up" data-aos-delay="400">We're always excited to talk with hackers, organizers, and companies about the hackathon movement</h2>
<div data-aos="fade-up" data-aos-delay="600">
<div class="text-center text-lg-start">
<a href="https://mlh.io/" class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Get Started</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/softwaredev.gif" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End Hero -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Clients</h2>
<p>Our Trusted Partners</p>
</header>
<div class="clients-slider swiper-container">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/IBM.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/Teqfocus-new-logo.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/github1.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/1200px-Mlh-logo-color.svg.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/Udacity-Logo_Blue-1.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/cfc.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/redhat.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/elastic.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/unity.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/microsoft.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/Press-Kit-Transparent-Bugcrowd-Logo.png" class="img-fluid" alt=""></div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Clients Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="row gx-0">
<div class="col-lg-6 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<div class="content">
<h3>Who We Are</h3>
<h2>We provide quick and accurate custom open-source development for Magento and other CMS tools to build user-friendly e-stores.</h2>
<p>
Devlover’ - Major League Hacking (MLH) is the official student hackathon league. Each year, we power over 200 weekend-long invention competitions that inspire innovation, cultivate communities and teach computer science skills to more than 65,000 students around the world. MLH is an engaged and passionate maker community, consisting of the next generation of technology leaders and entrepreneurs.
</p>
<div class="text-center text-lg-start">
<a href="https://github.com/Ananya-0306" class="btn-read-more d-inline-flex align-items-center justify-content-center align-self-center">
<span>Read More</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 d-flex align-items-center" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/IMG_3341-scaled.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Values Section ======= -->
<section id="values" class="values">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Values</h2>
<p>One Team of Endless Opportunities</p>
</header>
<div class="row">
<div class="col-lg-4">
<div class="box" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/values-1.png" class="img-fluid" alt="">
<h3>Experienced Developers</h3>
<p>Develover’ team includes over 250+ development and design professionals with the expertise to deliver a product that exceeds your expectations. Whether you require advanced web development or custom programming, our team of experts have the skills to do it all</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box" data-aos="fade-up" data-aos-delay="400">
<img src="assets/img/values-2.png" class="img-fluid" alt="">
<h3>Quality & Perfection</h3>
<p>Every project is managed by a dedicated development team to ensure we appoint the best resources for each project. We continuously monitor each stage of development from start to finish, and implement thorough testing procedures so the best results are achieved</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box" data-aos="fade-up" data-aos-delay="600">
<img src="assets/img/values-3.png" class="img-fluid" alt="">
<h3>Dedicated Support</h3>
<p>Technical problems can emerge at any time and can be very frustrating. You can rest easy knowing our support team is around 18 hours a day, 5 days a week. Just talk to us and we’ll address any issues quickly and effectively, so small problems don’t turn into bigger ones.</p>
</div>
</div>
</div>
</div>
</section><!-- End Values Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p>Happy Clients</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-journal-richtext" style="color: #ee6c20;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p>Projects</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-headset" style="color: #15be56;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="1463" data-purecounter-duration="1" class="purecounter"></span>
<p>Hours Of Support</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-people" style="color: #bb0852;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="50" data-purecounter-duration="1" class="purecounter"></span>
<p>Hard Workers</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Services Section ======= -->
<section id="features" class="features">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Services</h2>
<p>Expert designers that create everything your business needs to grow and achieve success online.</p>
</header>
<div class="row">
<div class="col-lg-6">
<img src="assets/img/features.png" class="img-fluid" alt="">
</div>
<div class="col-lg-6 mt-5 mt-lg-0 d-flex">
<div class="row align-self-center gy-4">
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="200">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>Creative Design</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="300">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>Web Development</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="400">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>CMS & Ecommerce</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="500">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>Consulting</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="600">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>App Development</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="700">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check"></i>
<h3>UI/UX Design</h3>
</div>
</div>
</div>
</div>
</div> <!-- / row -->
<!-- Feature Icons -->
<div class="row feature-icons" data-aos="fade-up">
<h3>We focus on creating a supportive environment for our team to grow and benefit from the company’s success.</h3>
<div class="row">
<div class="col-xl-4 text-center" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/features-3.png" class="img-fluid p-4" alt="">
</div>
<div class="col-xl-8 d-flex content">
<div class="row align-self-center gy-4">
<div class="col-md-6 icon-box" data-aos="fade-up">
<i class="ri-line-chart-line"></i>
<div>
<h4>Web Development</h4>
<p>Build custom, feature-rich websites and web applications with our experienced developers.</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="ri-stack-line"></i>
<div>
<h4>CMS & Ecommerce</h4>
<p>Ecommerce professional that build and customize your online business to your requirements.</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="ri-brush-4-line"></i>
<div>
<h4>Branding</h4>
<p>Create an identity for your business or refresh your existing brand to boost visual appeal.</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="ri-magic-line"></i>
<div>
<h4>Consulting</h4>
<p>Leading CRM developers with years of experience in delivering tailored CRM solutions.</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="ri-command-line"></i>
<div>
<h4>App Development</h4>
<p>We seamlessly develop all types of apps across various mobile platforms.</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<i class="ri-radar-line"></i>
<div>
<h4>Print Design</h4>
<p>Everything from business cards to customized graphics, we make print-ready tailored designs.</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Feature Icons -->
</div>
</section><!-- End Features Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Services</h2>
<p>It’s your business. We accelerate it.</p>
</header>
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-box blue">
<i class="ri-discuss-line icon"></i>
<h3>Digital Transformation & Business Agility</h3>
<p>We get your organization where it needs to be by combining broad and in-depth industry, organizational redesign and technical knowledge, transformation and change approaches, and best-in-class applied Agile frameworks. We define the best course of action, create a new operating models and help you to build the capabilities needed to realize the change you envision</p>
<!--<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box orange">
<i class="ri-discuss-line icon"></i>
<h3>Every organization Cloud-Native</h3>
<p>We combine our passion for cloud technology with experience. We migrate enterprise workloads to the cloud, and refactor or develop mission-critical cloud-native applications. Along the way, we transform organizations by establishing and training multidisciplinary teams that work together to deliver real customer value.</p>
<!--<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box green">
<i class="ri-discuss-line icon"></i>
<h3>Software Development Consultancy & Training</h3>
<p>Our goal is to create business value for our customers - and technology helps us do so. We help our customers design and build software platforms and applications to gain a competitive advantage. We avoid taking shortcuts for short-term benefit. Instead, we invest time in the long-lasting success of your product.</p>
<!-- <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box red">
<i class="ri-discuss-line icon"></i>
<h3>Driving your success with Data and AI</h3>
<p>We help you create a strategy and we design and build solutions with Data and AI, from concept to prototype and production-ready application. We also train your workforce to take full advantage of data and Al. We are the partner that makes your organization ready to run solutions at an enterprise scale with ease!</p>
<!--<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box purple">
<i class="ri-discuss-line icon"></i>
<h3>From bolt-on to built-in security</h3>
<p>The fast deployment of products and services is key to running a successful business. For innovation to flourish, security needs to be covered from the start and be able to adopt instantly and continuously. Devlover’ security helps you to transition from a control-based tollgate approach to a secure by design strategy.</p>
<!--<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="700">
<div class="service-box pink">
<i class="ri-discuss-line icon"></i>
<h3>SAP Technology Services</h3>
<p>We are a global team of high performance, experienced, innovative solution architects, project managers, SAP-certified consultants with expertise in right-sized solutions for your business and landscape. We not only understand your business but also help to improve your business processes with maximum output aligned with the organization’s strategic goal.</p>
<!--<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>-->
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>BUILD YOUR CAREER WITH US</h2>
<p>Learn the most relevant skills with business, creative, and tech courses - dozens of courses added each week.</p>
</header>
<div class="row gy-4" data-aos="fade-left">
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<span class="featured">Featured</span>
<h3 style="color: #127268;">Cybersecurity</h3>
<h4>Learn For free</h4>
<img src="assets/img/control-center_1454-221.jpg" class="img-fluid" alt="">
<p>We provide a free and open source Information Technology (IT) and Cyber Security training environment. You can learn almost anything IT and cyber security related.</p>
<a href="https://drive.google.com/drive/u/0/folders/15S2M7yNWm29mYsduDarDMB3kCCLicJ" class="btn-buy">Learn For Free</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="box">
<h3 style="color: #a805a0;">Web Development</h3>
<h4>Learn For free</h4>
<img src="assets/img/web.png" class="img-fluid" alt="">
<p>web development is a good career. Mondo's annual Tech and Digital Marketing Salary guide found “Web Developer” was the most in-demand job title in tech and one of its top-paying jobs.</p>
<a href="https://drive.google.com/drive/u/0/folders/15S2M7yNWm29mYsduDarDMB3kCCLicJ" class="btn-buy">Learn For Free</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="300">
<div class="box">
<span class="featured">Featured</span>
<h3 style="color: #ff901c;">Data structure and Algorithm</h3>
<h4>Learn For free</h4>
<img src="assets/img/dsa.jpg" class="img-fluid" alt="">
<p>Study hash tables and linked lists. Review sorting and searching, trees and graphs, arrays and strings. Know how to implement and use these things in your language of choice. </p>
<a href="https://drive.google.com/drive/u/0/folders/15S2M7yNWm29mYsduDarDMB3kCCLicJ" class="btn-buy">Learn For Free</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<h3 style="color: #ff0071;">Machine Learning</h3>
<h4>Learn For free</h4>
<img src="assets/img/comp.jpg" class="img-fluid" alt="">
<p>Machine Learning: AI systems with ability to automatically learn and improve from experience without being explicitly programmed via training. Take online courses or attend a data science bootcamp.</p>
<a href="https://drive.google.com/drive/u/0/folders/15S2M7yNWm29mYsduDarDMB3kCCLicJ" class="btn-buy">Learn For Free</a>
</div>
</div>
</div>
</div>
</section>
<!-- ======= End of Pricing Section ======= -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Portfolio</h2>
<p>Check our latest work</p>
</header>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Developers</li>
<li data-filter=".filter-card">Hackers</li>
<li data-filter=".filter-web">Our Community</li>
</ul>
</div>
</div>
<div class="row gy-4 portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/Junction_2015.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Experienced Developers</h4>
<p>Devlover’ team includes over 350+ development and design professionals with the expertise to deliver a product that exceeds your expectations. Whether you require advanced web development or custom programming, our team of experts have the skills to do it all</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/Junction_2015.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 1"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/3d-instagram.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Hire Versatile Creative Design Experts</h4>
<p>We are proud to have a team of young professionals driving the creative process behind Devlover’. Our team can help you design everything your business needs to achieve success, from brand creation, designing an online store, packaging and print design.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/3d-instagram.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/808311.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Meet Our Team of In-House Developers</h4>
<p>Our team of web development professionals can help you build your dream website, online store or custom web application with speed and precision. Together they have decades worth of experience under their belt and have the experience and technical expertise to get your project done right.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/hackathon2.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/cyber.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Devlover’ Security</h4>
<p>The fast deployment of products and services is key to running a successful business. For innovation to flourish, security needs to be covered from the start and be able to adopt instantly and continuously.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/cyber.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/discord.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Meet Our CRM Integration Professionals</h4>
<p>We are proud to have an experienced team of CRM integration professionals to support your business. Whether you need customer CRM development services or advanced third-party integration, we’ll serve you the most outstanding solutions.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/graphic.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/hackathon3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>UX/UI Design Services</h4>
<p>It’s our duty to ensure end user satisfaction by improving the feel, ease of use, and experience of the products we create. Our creative design team is proficient with the best design practices and concepts to create excellent user experience and interaction for our clients. </p>
<div class="portfolio-links">
<a href="assets/img/portfolio/tes.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/sale_165375_article_image.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>From bolt-on to built-in security</h4>
<p>Scalable and continuous security processes are essential in agile environments. This requires high levels of security automation, simple and fast processes, and distributed security knowledge and responsibility. </p>
<div class="portfolio-links">
<a href="assets/img/portfolio/sale_165375_article_image.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 1"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/cloud.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>From Build to Run: Pointers on Secure Deployment</h4>
<p>We help you speed up and automate security processes, enhance team autonomy, secure cloud and container-based architectures, and realign with your business’ and customers’ continuously shifting needs.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/cloud.png" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/acastro.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>We Provide Leading CRM Consulting Services</h4>
<p>sticky.io (formerly LimeLight CRM) is a fully-integrated ecommerce CRM platform which helps businesses maximize revenue through analytics, flexible billing, risk management and more! Our professionals have more than 7 years of experience with sticky.io development and consulting.</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/acastro.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Recent Blog Posts Section ======= -->
<section id="recent-blog-posts" class="recent-blog-posts">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>2021 Season</h2>
<p>Find, compete, and earn points at the largest, most diverse hacker events in the world</p>
</header>
<div class="row">
<div class="col-lg-4">
<div class="post-box">
<div class="post-img"><img src="assets/img/blog/blog-1.jpg" class="img-fluid" alt=""></div>
<span class="post-date">25 June 2021 - 27 June 2021 </span>
<h3 class="post-title">SigmaHacks 3 - Registrations will close on June 18 at 11:59 PM PDT. </h3>
<a href="https://sigmahacks.org/" class="readmore stretched-link mt-auto"><span>Register Now</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="post-box">
<div class="post-img"><img src="assets/img/blog/blog-2.jpg" class="img-fluid" alt=""></div>
<span class="post-date">26 June 2021 - 27 June 2021</span>
<h3 class="post-title">Hack the Mountains 2.0 - "The Best view comes after the Hardest climb." </h3>
<a href="https://hackthemountain.tech/" class="readmore stretched-link mt-auto"><span>Register Now</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="post-box">
<div class="post-img"><img src="assets/img/blog/blog-3.jpg" class="img-fluid" alt=""></div>
<span class="post-date">26 June 2021 - 27 June 2021</span>
<h3 class="post-title">Surfs Up, Hackers!- Summer is here and it's time for hacking!- beach-themed hackathon. </h3>
<a href="https://organize.mlh.io/participants/events/6800-surfs-up-hacks" class="readmore stretched-link mt-auto"><span>Read More</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End Recent Blog Posts Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Contact</h2>
<p>Contact Us</p>
</header>
<div class="row gy-4">
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-geo-alt"></i>
<h3>Address</h3>
<p>DN2, DN Block, Sector V, Bidhannagar,</br> Kolkata, West Bengal 700091</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-telephone"></i>
<h3>Call Us</h3>
<p>+1 5589 55488 55<br>+91 8987818847</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-envelope"></i>
<h3>Email Us</h3>
<p>ananyachatterjee@gmail.com<br>contact@devlover.com</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-clock"></i>
<h3>Open Hours</h3>
<p>Monday - Friday<br>9:00AM - 05:00PM</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<form action="forms/contact.php" method="post" class="php-email-form">
<div class="row gy-4">
<div class="col-md-6">
<input type="text" name="name" class="form-control" placeholder="Your Name" required>
</div>
<div class="col-md-6 ">
<input type="email" class="form-control" name="email" placeholder="Your Email" required>
</div>
<div class="col-md-12">
<input type="text" class="form-control" name="subject" placeholder="Subject" required>
</div>
<div class="col-md-12">
<textarea class="form-control" name="message" rows="6" placeholder="Message" required></textarea>
</div>
<div class="col-md-12 text-center">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
<button type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-newsletter">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h4>Our Newsletter</h4>
<p>Devlover’ Group needs the contact information you provide to us to contact you about our products and services.</br> You may unsubscribe from these communications at any time.</p>
</div>
<div class="col-lg-6">
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="col-lg-5 col-md-12 footer-info">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/Code-Developer-Logo.png" alt="">
<span>Devlover’</span>
</a>
<p>Devlover’ explores and creates new frontiers in IT. We provide innovative products and services and strive to guide our customers into the transforming world of IT.</p>
<div class="social-links mt-3">
<a href="https://twitter.com/AnanyaC15848288" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/Ninjahattori01/" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/_iananya__/" class="instagram"><i class="bi bi-instagram bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/in/ananya-chatterjee-12522317" class="linkedin"><i class="bi bi-linkedin bx bxl-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#about">About us</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#services">Services</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.ibm.com/in-en/employment/">We are Hiring</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.instagram.com/_iananya__/">Instagram</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#">Web Design</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Web Development</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Product Management</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Bug Bounty</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Cybersecurity</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-12 footer-contact text-center text-md-start">
<h4>Contact Us</h4>
<p>
DN2, DN Block, Sector V,
Bidhannagar,Kolkata,<br>
West Bengal 700091 <br>
India🌈 <br><br>
<strong>Phone:</strong> +91 8987818847<br>
<strong>Email:</strong> ananyachatterjee@gmail.com<br>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>Devlover’</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/flexstart-bootstrap-startup-template/ -->
Designed by <a href="https://github.com/Ananya-0306">Ananya Chatterjee ♥</a>
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>