forked from kroy96/alphaDevsSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1054 lines (939 loc) · 53.3 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
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="images/logo/shadow-alpha.png" type="image/png" sizes="14x14">
<!-- Page title -->
<title>AlphaDevs</title>
<!-- CSS FILES -->
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="css/fontawesome-icons/css/all.min.css">
<link rel="stylesheet" href="css/bootsnav.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style/other/aos.css">
<link rel="stylesheet" href="style/other/animate.css">
<!-- Main css style -->
<link rel="stylesheet" href="style/style.css">
<!-- main responsive css file -->
<link rel="stylesheet" href="style/responsive.css">
<!-- CSS FILES end -->
<!-- custom css -->
<link rel="stylesheet" href="css/custom.css">
<link
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,400&display=swap"
rel="stylesheet">
<!-- custom css ends -->
</head>
<body>
<div id="fakeLoader"></div>
<!-- Navbar content -->
<nav class="navbar navbar-default dark navbar-sticky bootsnav">
<!-- Start Top Search -->
<div class="top-search">
<div class="container">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-search"></i></span>
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-addon close-search"><i class="fa fa-times"></i></span>
</div>
</div>
</div>
<!-- End Top Search -->
<div class="custom-width">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<!-- <a class="navbar-brand aligment-for-home" href="index.html"><img src="images/logo/shadow-alpha.png"
class="logo" alt=""></a> -->
<a class="navbar-brand aligment-for-home" href="index.html"><img src="images/logo/logo-alt.png"
class="logo" alt=""></a>
</div>
<!-- End Header Navigation -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-menu">
<ul class="nav navbar-nav navbar-right" data-in="fadeIn" data-out="fadeOut">
<li>
<a href="index.html" class="active">Home</a>
</li>
<li>
<a href="ourwork.html" class="">Our Work</a>
</li>
<!-- <li>
<a href="aboutus.html" class="">About Us</a>
</li> -->
<li>
<a href="contactus.html" class="">Contact Us</a>
</li>
<li>
<a href="community.html" class="">Community</a>
</li>
<!-- <li class="dropdown">
<a href="#" class="" >Pages</a>
<ul class="dropdown-menu">
<li><a href="domain.html">Domain Page</a></li>
<li><a href="ssl.html">SSL Page</a></li>
<li><a href="shared.html">Shared Hosting</a></li>
<li><a href="cloud.html">Cloud Hosting</a></li>
<li><a href="wordpress.html">Wordpress Hosting</a></li>
<li><a href="dedicated.html">Dedicated Hosting</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="error-404.html">Error 404</a></li>
</ul>
</li> -->
</ul>
</div><!-- /.navbar-collapse -->
</div>
<!-- Start Side Menu -->
<div class="side">
<a href="#" class="close-side"><i class="fa fa-times"></i></a>
<div class="widget">
<h6 class="title">About Us</h6>
<p>AlphaDevs is a group of like-minded people working towards the goal of leveraging technology to make
the world around them better.
Our team consists of people with a variety of skills, ranging from software development to IoT, AI
etc. Putting the same skills to use has yielded us a good track record in number of events and
competitions as well.</p>
</div>
<div class="widget">
<h6 class="title">Contact Us</h6>
<ul class="link">
<li><i class="fa fa-envelope"></i> [email protected]</li>
</ul>
</div>
<div class="widget">
<h6 class="title">Social Pages</h6>
<div class="social-links">
<a href="https://www.linkedin.com/company/thealphadevs/" target="_blank"> <i
class="fab fa-linkedin-in"></i></a>
<a href="https://m.facebook.com/Alphadevs11/" target="_blank"> <i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/Alphadevs1?s=08" target="_blank"> <i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/alpha_devs/?igshid=1nx5ce20x4edk" target="_blank"> <i
class="fab fa-instagram"></i></a>
<a href="https://github.com/orgs/thealphadevs/dashboard" target="_blank"> <i
class="fab fa-github"></i></a>
</div>
</div>
</div>
<!-- End Side Menu -->
</nav>
<!-- Navbar Content ends here -->
<!-- Home Page Carousel -->
<div class="home-carousel">
<!-- Left sidebar -->
<div class="left-sidebar">
<div class="contact-links link-style">
<a data-toggle="modal" data-target="#myModal"><i class="fas fa-phone"></i></a>
<a data-toggle="modal" data-target="#myModal"><i class="far fa-envelope-open"></i></a>
<div class="notification">+</div>
</a>
</div>
<div class="sidebar-socials link-style">
<a href="https://www.linkedin.com/company/thealphadevs/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
<a href="https://m.facebook.com/Alphadevs11/" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/alpha_devs/?igshid=1nx5ce20x4edk" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="https://twitter.com/Alphadevs1?s=08" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/orgs/thealphadevs/dashboard" target="_blank"><i
class="fab fa-github"></i></a>
</div>
</div>
<!-- MODAL -->
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-sm">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Please feel free to contact us</h4>
</div>
<div class="modal-body">
<div class="modal-contact">
<i class="fa fa-phone"></i>
<h4>+91 70042 26498</h4>
</div>
<div class="modal-contact">
<i class="fa fa-envelope"></i>
<h4>[email protected]</h4>
</div>
<div class="modal-contact">
<i class="fa fa-envelope"></i>
<h4>[email protected]</h4>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-blue btn-small" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- end of modal -->
<!-- Left Sidebar ends here -->
<div class="custom-width padding-top100">
<div class="row ">
<div class="col-sm-12">
<div class="text-container">
<div class="home-title animated fadeInLeft">
<h2>AlphaDevs</h2>
<h4 class="animation-text">Bring us your ideas, we will do the rest.</h4>
<p>IDEATE | CREATE | DEPLOY</p>
<div class="buttons">
<a href="#" class="btn btn-medium btn-green">Know More</a>
</div>
<ul class="pl-5 list-work">
<h3>
Our Services
</h3>
<li>
Website & Mobile App Development
</li>
<li>
AI/ML Solutions
</li>
<li>
API's & Webkits
</li>
<li>
Database & Cloud Solutions
</li>
<li>
IoT Solutions
</li>
<li>
Maintenance/Deployment Solutions
</li>
</ul>
</div>
</div>
<img src="images/png-images/world2.png" class="img-absolute" alt="">
</div>
</div>
</div>
</div>
<!-- Home Page Carousel -->
<!-- Domain Search section -->
<div class="search-domain" style="background-color: #192441;">
<div class="custom-width">
<div class="row">
<div class="col-sm-12">
<div id="anim"></div>
</div>
</div>
</div>
</div>
<!-- Domain Search section ends here -->
<!-- About section - Text right -->
<div class="layout-text right-layout padding-bottom60 padding-top60">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="text-container" data-aos="fade-up">
<h3>ABOUT US</h3>
<div class="text-content">
<i class="far fa-check-circle pull-left"></i>
<div class="text">
<p>AlphaDevs is a group of like-minded people working towards the goal of leveraging
technology to make the world around them better.</p>
</div>
</div>
<div class="text-content">
<i class="far fa-check-circle pull-left"></i>
<div class="text">
<p>Our team consists of people with a variety of skills, ranging from software
development to IoT, AI etc. Putting the same skills to use has yielded us a good
track record in number of events and competitions as well.</p>
</div>
</div>
<!-- <div class="buttons">
<a href="aboutus.html" class="btn btn-medium btn-green">Contact Us<i
class="fas fa-long-arrow-alt-right"></i></a>
</div> -->
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img src="images/png-images/green-energy.png" class="img-responsive" alt="" data-aos="fade-right">
</div>
</div>
</div>
</div>
<!-- About section- Text right ends here -->
<!--Alphacrat -->
<div class="pricing-tables padding-top50 padding-bottom50">
<div class="custom-width">
<div class="row alpha-crat-sec ">
<div class="col-lg-6 alpha-crat-sec_text text-center">
<img src="images/Workimg/alphalogo.png" alt="" style="width: 200px;">
<h2>New Space for</h2>
<h1>LEARNERS</h1>
<P>One stop solution for <strong>Teachers & Students</strong> </P>
<a href="https://alphacrat.herokuapp.com/" target="_blank"
class="btn btn-green btn-medium text-white" style="margin-top: 20px;"> Coming Soon</a>
</div>
<div class="col-lg-5 alpha-crat-sec_img">
<img src="images/Workimg/astro.png" class="img-responsive" alt="">
</div>
</div>
<div class="row" style="margin: auto;display: flex;">
<img src="images/Workimg/Airfly.png" style="max-width: none;width: 100%;" alt=""></div>
</div>
</div>
<!-- Alphacrat ends here -->
<!-- our work -->
<div class="pricing-tables padding-top50 padding-bottom50">
<div class="custom-width">
<div class="row " style="margin: auto;">
<div class="main-title text-center">
<h2>Our Latest Work</h2>
<p>Take a moment to view some of our latest work. While most of the sites below were built by us
from the ground up, we experience a wide range of involvement with our client’s requirements.
</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<!-- <div class="price">19.99$/month</div> -->
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" src="images/Workimg/anndata.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Anndata</h4>
<p class="text-justify">A web-app developed to solve the issue of hunger crisis, by
helping
the people who want to
donate food get in touch with people who are in need of food.</p>
<div class="table-list">
<!-- <ul>
<li><i data-aos="zoom-in" class="fa fa-plus"></i> Fully Customized Servers</li>
<li><i data-aos="zoom-in" data-aos-delay="50" class="fa fa-plus"></i> Multi Core
and Turbo Speed</li>
<li><i data-aos="zoom-in" data-aos-delay="100" class="fa fa-plus"></i> Unlimited
SDD Space </li>
<li><i data-aos="zoom-in" data-aos-delay="150" class="fa fa-times"></i> Unlimited
MySQL Databases</li>
<li><i data-aos="zoom-in" data-aos-delay="200" class="fa fa-times"></i>Multi CPU
and Ultra Speed</li>
</ul> -->
</div>
<div class="buttons">
<a href="https://anndata.co.in/" target="_blank"
class="btn btn-green btn-medium work-btn"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<!-- <div class="price green-bg mobile-margin-top">29.99$/month</div> -->
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="100" src="images/Workimg/myfurries.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>My Furries</h4>
<p class="text-justify">A web portal developed to cater to all the needs of pet. Its
similar
to a social media
platform but for pet care.</p>
<div class="table-list">
<!-- <ul>
<li><i data-aos="zoom-in" class="fa fa-plus"></i> Fully Customized Servers</li>
<li><i data-aos="zoom-in" data-aos-delay="50" class="fa fa-plus"></i> Multi Core
and Turbo Speed</li>
<li><i data-aos="zoom-in" data-aos-delay="100" class="fa fa-plus"></i> Unlimited
SDD Space</li>
<li><i data-aos="zoom-in" data-aos-delay="150" class="fa fa-times"></i> Unlimited
MySQL Databases</li>
<li><i data-aos="zoom-in" data-aos-delay="200" class="fa fa-times"></i>Multi CPU
and Ultra Speed</li>
</ul> -->
</div>
<div class="buttons">
<!-- <a href="http://myfurries.com/" target="_blank"
class="btn btn-green btn-medium work-btn"> Know More
</a> -->
<a href="javascript:void(0);" target="_blank"
class="btn btn-green btn-medium work-btn disabled"> Know More
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<!-- <div class="price price-margin-top">59.99$/month</div> -->
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="300" src="images/Workimg/kvest.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Kvest</h4>
<p class="text-justify">Kvest is a platform made to solve the hassles involved with
international shipping by
introducing a unique P2P delivery system.</p>
<div class="table-list">
<!-- <ul>
<li><i data-aos="zoom-in" class="fa fa-plus"></i> Fully Customized Servers</li>
<li><i data-aos="zoom-in" data-aos-delay="50" class="fa fa-plus"></i> Multi Core
and Turbo Speed</li>
<li><i data-aos="zoom-in" data-aos-delay="100" class="fa fa-plus"></i> Unlimited
SDD Space</li>
<li><i data-aos="zoom-in" data-aos-delay="150" class="fa fa-times"></i> Unlimited
MySQL Databases</li>
<li><i data-aos="zoom-in" data-aos-delay="200" class="fa fa-times"></i>Multi CPU
and Ultra Speed</li>
</ul> -->
</div>
<div class="buttons">
<a href="https://kvest.global/" target="_blank"
class="btn btn-green btn-medium work-btn">Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/voto.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Votonimo</h4>
<p class="text-justify">Votonimo is a voting based product aggregation and comparison
platform that lets a user
find the product that suits his/her needs the best.</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://votonimo.com/" class="btn btn-green btn-medium work-btn"> Know
More</a>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/phd.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>PHDCCI (Reg Portal)</h4>
<p class="text-justify">
PHD Chamber of Commerce and Industry, established in 1905, is a proactive National
Apex Chamber working at the grass-root level.
</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://www.phdcci.in/startupforum/"
class="btn btn-green btn-medium work-btn" target="_blank"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/loofre.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Loofre Veg</h4>
<p class="text-justify">
An app made for easy delivery of fruits and vegetables to it’s customers.
</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://play.google.com/store/apps/details?id=com.loofre.basket"
class="btn btn-green btn-medium work-btn" target="_blank"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/gkmart.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>GK MART</h4>
<p class="text-justify">
Multiple Apps made to handle supply-management chain of a variety of indigenously
produces artisanal products.
</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="#" class="btn btn-green btn-medium work-btn disabled" target="_blank"> Know
More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/drivetech.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>DriveTech AI</h4>
<p class="text-justify">
An extensive Data Science and Machine learning driven Real Time Data Analysis
Platform.
</p>
<div class="table-list">
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 mb-5">
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="200" src="images/Workimg/bfb.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>BFB</h4>
<p class="text-justify">
A centralized platform to manage and keep track of all details regarding the
delivery of packaged water bottles throughout the state of Delhi.
</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="http://bansalfoodandbeverages.com/seller"
class="btn btn-green btn-medium work-btn" target="_blank"> Know
More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- our workcontent ends here -->
<!-- bootcamp and workshop -->
<div class="pricing-tables padding-top50 padding-bottom50">
<div class="custom-width">
<div class="row">
<div class="main-title text-center">
<h2>Bootcamp and Workshops</h2>
<p>With the boom of technology in the field of education, and Ed-Tech becoming the norm of India's
education system, Our team has tried its best to make positive contributions towards this field.
</p>
</div>
<div class="row center-align">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 ">
<div class="table mobile-margin-bottom work-box-sizing new-tab-size resp-card">
<div class="table-img">
<img data-aos="fade-up" src="images/Workimg/techwizard.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Tech Wizards</h4>
<p class="text-justify">As Knowledge partners of the event, in collaboration with
IncubateIND. It is a collective group initiative, to spark the interest in
kids of all ages towards STEM.</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://incubateindx.com/techwizard/" target="_blank"
class="btn btn-green btn-medium work-btn resp-btn-card"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="table mobile-margin-bottom work-box-sizing new-tab-size resp-card">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="100" src="images/Workimg/soc.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>The School of Code</h4>
<p class="text-justify">As Knowledge partners of the event, in collaboration with
IncubateIND, SOC aims at harnessing creative and critical thinking amongst students
via help of technology.</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://incubateind.com/soc" target="_blank" target="_blank"
class="btn btn-green btn-medium work-btn resp-btn-card"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="table mobile-margin-bottom work-box-sizing new-tab-size resp-card">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="300" src="images/Workimg/sdtc.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>SDTC</h4>
<p class="text-justify">As Knowledge partners of the event, in collaboration with
IncubateIND, Student Developer Tech Camp is a platform dedicated to teaching young
learners Python & AI.</p>
<div class="table-list">
</div>
<div class="buttons">
<a href="https://incubateind.com/sdtcml" target="_blank"
class="btn btn-green btn-medium work-btn resp-btn-card">Know More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bootcamp and workshop ends -->
<!-- Our inititative -->
<div class="pricing-tables padding-top50 padding-bottom50">
<div class="custom-width">
<div class="row">
<div class="main-title text-center">
<h2>Our Initiatives</h2>
<p>While we are always focused on delivering the very best to our clients, we also have our own
ventures and initiatives that we've been working on.
</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 initiative-section" style="justify-content: center;">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12 ">
<!-- <div class="price">19.99$/month</div> -->
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" src="images/Workimg/atl++.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>ATL++</h4>
<p class="text-justify">An edu-tech initiative, based around leveraging AI and
Robotics to enhance the existing education system.</p>
<div class="table-list">
<!-- <ul>
<li><i data-aos="zoom-in" class="fa fa-plus"></i> Fully Customized Servers</li>
<li><i data-aos="zoom-in" data-aos-delay="50" class="fa fa-plus"></i> Multi Core
and Turbo Speed</li>
<li><i data-aos="zoom-in" data-aos-delay="100" class="fa fa-plus"></i> Unlimited
SDD Space </li>
<li><i data-aos="zoom-in" data-aos-delay="150" class="fa fa-times"></i> Unlimited
MySQL Databases</li>
<li><i data-aos="zoom-in" data-aos-delay="200" class="fa fa-times"></i>Multi CPU
and Ultra Speed</li>
</ul> -->
</div>
<div class="buttons">
<a href="#" class="btn btn-green btn-medium work-btn"> Know More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<!-- <div class="price green-bg mobile-margin-top">29.99$/month</div> -->
<div class="table mobile-margin-bottom work-box-sizing">
<div class="table-img">
<img data-aos="fade-up" data-aos-delay="100" src="images/Workimg/covid19.png"
class="img-center img-responsive work-img" alt="Wordpress Hosting">
</div>
<div class="table-content">
<h4>Covid-19 platform</h4>
<p class="text-justify">An incentivised news sharing platform, that curbs the
spread of fake news which has proven to be very harmful.</p>
<div class="table-list">
<!-- <ul>
<li><i data-aos="zoom-in" class="fa fa-plus"></i> Fully Customized Servers</li>
<li><i data-aos="zoom-in" data-aos-delay="50" class="fa fa-plus"></i> Multi Core
and Turbo Speed</li>
<li><i data-aos="zoom-in" data-aos-delay="100" class="fa fa-plus"></i> Unlimited
SDD Space</li>
<li><i data-aos="zoom-in" data-aos-delay="150" class="fa fa-times"></i> Unlimited
MySQL Databases</li>
<li><i data-aos="zoom-in" data-aos-delay="200" class="fa fa-times"></i>Multi CPU
and Ultra Speed</li>
</ul> -->
</div>
<div class="buttons">
<a href="#" class="btn btn-green btn-medium work-btn"> Know More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Our work content ends here -->
<!-- Separated Section -->
<div class="dual-section lighter-bg padding-top50 padding-bottom50">
<div class="custom-width">
<div class="row">
<div class="main-title title-white text-center">
<h2>Our Services</h2>
<p> We
do everything from web design, web/app development, consulting, maintenance, graphics,
marketing, and everything in between! </p>
</div>
<div class="col-sm-6">
<div class="left-content">
<div class="features">
<i class="fa fa-cubes pull-left" data-aos="zoom-in"></i>
<div class="text">
<h4>Website and Mobile app Development</h4>
<p>We provide complete start to end development for both websites and mobile apps.</p>
</div>
</div>
<div class="features">
<i class="fa fa-exchange-alt pull-left" data-aos="zoom-in" data-aos-delay="100"></i>
<div class="text">
<h4>APIs and Webkits</h4>
<p>We provide API and Webkit development services as well.</p>
</div>
</div>
<div class="features">
<i class="fa fa-microchip pull-left" data-aos="zoom-in" data-aos-delay="200"></i>
<div class="text">
<h4>
IoT Solutions</h4>
<p>We also work in the domain of IoT and cover everything from cloud services to
deployment.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="right-content">
<div class="features">
<i class="fa fa-chart-line pull-left" data-aos="zoom-in"></i>
<div class="text">
<h4>
Maintenance/Deployment Solutions</h4>
<p>We offer website maintenance and deployment services.</p>
<p></p>
</div>
</div>
<div class="features">
<i class="fa fa-database pull-left" data-aos="zoom-in" data-aos-delay="100"></i>
<div class="text">
<h4>Database and Cloud Solutions</h4>
<p>We work on elevating the existing platforms to newer technologies by providing cloud
and database solutions.</p>
<p></p>
</div>
</div>
<div class="features">
<i class="fa fa-code pull-left" data-aos="zoom-in" data-aos-delay="200"></i>
<div class="text">
<h4>
AI/ML Solutions</h4>
<p>Similar, to elevating platforms using cloud solutions, we also provide AI & ML
solutions to create more cutting edge and innovative products.</p>
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Separated Section ends here-->
<!-- Testimonials slider -->
<!-- <section class="testimonials " id="carousel" style="background-color: #19233f;">
<div class="custom-width">
<div class="row">
<div class="main-title text-center">
<h3>Testimonials</h3>
<h2>What some of our Amazing Clients say</h2>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="carousel slide" id="fade-quote-carousel" data-ride="carousel" data-interval="4000">
<ol class="carousel-indicators">
<li data-target="#fade-quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#fade-quote-carousel" data-slide-to="1"></li>
<li data-target="#fade-quote-carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item">
<div class="profile-circle"><img src="images/other/testimonial1.jpg"
class="img-responsive" alt=""></div>
<blockquote>
<p><i class="fa quote fa-quote-right fa-sm pull-left"></i><br>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, veritatis
nulla eum laudantium totam tempore optio doloremque laboriosam quas, quos eaque
molestias odio aut eius animi. Impedit temporibus nisi accusamus. <i
class="fa quote fa-quote-right fa-sm"></i></p>
<small>www.domainname.com</small>
</blockquote>
</div>
<div class="item">
<div class="profile-circle"><img src="images/other/testimonial2.jpg"
class="img-responsive" alt="">
</div>
<blockquote>
<p><i class="fa quote fa-quote-right fa-sm pull-left"></i>
<br>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, veritatis
nulla eum laudantium totam tempore optio doloremque laboriosam quas, quos eaque
molestias odio aut eius animi. Impedit temporibus nisi accusamus. <i
class="fa quote fa-quote-right fa-sm "></i></p>
<small>www.domainname.com</small>
</blockquote>
</div>
<div class="active item">
<div class="profile-circle"><img src="images/other/testimonial1.jpg"
class="img-responsive" alt=""></div>
<blockquote>
<p><i class="fa quote fa-quote-right fa-sm pull-left"></i>
<br>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, veritatis
nulla eum laudantium totam tempore optio doloremque laboriosam quas, quos eaque
molestias odio aut eius animi. Impedit temporibus nisi accusamus. <i
class="fa quote fa-quote-right fa-sm "></i></p>
<small>www.domainname.com</small>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Testimonials slider ends here -->
<!-- Call to action -->
<!-- <div class="call-to-action cta-green">
<div class="custom-width">
<div class="row">
<div class="col-sm-6">
<h3>Get in touch</h3>
<p>We cater to all your tech needs in the era of internet!</p>
</div>
<div class="col-sm-6">
<div class="buttons">
<a href="#" class="btn btn-outline btn-large">Contact Us <i
class="fas fa-long-arrow-alt-right"></i></a>
</div>
</div>
</div>
</div>
</div> -->
<!-- Call to action ends here -->
<!-- Dark Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-12 col-sm-12">
<!-- <img src="images/logo/shadow-alpha.png" class="alphafooter-icon" alt=""> -->
<h3>About Us</h3>
<div class="text" style="margin-top: 10px;">AlphaDevs is a group of like-minded people working
towards the goal of
leveraging technology to make the world around them better.
<p>Our team consists of people with a variety of skills, ranging from software development to
IoT, AI etc. Putting the same skills to use has yielded us a good track record in number of
events and competitions as well.</p>
</div>
</div>
<div class="footer-block-align">
<div class="col-lg-2 col-md-4 col-sm-6 col-6">
<h5>Helpful Links</h5>
<ul class="footer-nav">
<li><a href="index.html"><i class="fa fa-angle-right"></i><span>Home</span></a></li>
<li><a href="ourwork.html"><i class="fa fa-angle-right"></i><span>Our Work</span></a></li>
<!-- <li><a href="aboutus.html"><i class="fa fa-angle-right"></i><span>About Us</span></a></li> -->
<li><a href="contactus.html"><i class="fa fa-angle-right"></i><span>Contact Us</span></a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-4 col-sm-6 col-7 pr-0 ">
<h5>Our Work</h5>
<ul class="footer-nav">
<li><a href="https://anndata.co.in/" target="_blank"><i
class="fa fa-angle-right"></i><span>Anndata</span></a></li>
<li><a href="http://myfurries.com/" target="_blank"><i
class="fa fa-angle-right"></i><span>My
Furries</span></a>
</li>
<li><a href="our-work.html"><i class="fa fa-angle-right"></i><span>ATL++</span></a></li>
<li><a href="https://youtu.be/1tdWHL4j9EM" target="_blank"><i
class="fa fa-angle-right"></i><span>Covid-19 platform</span></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<h5>Contact Us</h5>
<div class="address">
<p><span>Contact US:</span><a href="tel:7004226498">+91 70042 26498</a></p>
<p><span>E-Mail:</span><a href="mailto:[email protected]">[email protected]</a></p>
<p><span>And for opportunities:</span></p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<div class="social-media">