-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
1101 lines (915 loc) · 47.1 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>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<link rel="apple-touch-icon" sizes="180x180"
href="images/apple-touch-icon.webp">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<link rel="icon" type="image/png" sizes="32x32"
href="images/favicon-32x32.webp">
<link rel="icon" type="image/png" sizes="16x16"
href="images/favicon-16x16.webp">
<title>MLSA SANINS</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/cards.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico"
type="image/logodarkwithoutname.webp">
<link rel="icon" href="favicon.ico" type="image/logodarkwithoutname.webp">
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logodark.webp" alt="Homepage">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close"
title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>Navigation</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home"
title="home">Home</a></li>
<li><a class="smoothscroll" href="#events"
title="about">Events</a></li>
<li><a class="smoothscroll" href="#community"
title="services">Community</a></li>
<li><a class="smoothscroll" href="#works" title="works">Our
Interests</a></li>
<li><a href="/pages/teams.html">Our Team</a></li>
<li><a class="smoothscroll" href="#contact"
title="contact">Contact us</a></li>
</ul>
<p>We, the SANINS, powered by Microsoft Learn Student Ambassador Community,
bring to you a door to realm of knowledge and experience.
Join us on a ride from being a novice to evolving into an
expert. <a href='#0'></a> </p>
<ul class="header-nav__social">
<li>
<a target="_blank"
href="https://www.facebook.com/mscsanins/"><i
class="fa fa-facebook"></i></a>
</li>
<li>
<a target="_blank"
href="https://twitter.com/microsoftstude3"><i
class="fa fa-twitter"></i></a>
</li>
<li>
<a target="_blank"
href="https://www.instagram.com/mlsa_sanins/"><i
class="fa fa-instagram"></i></a>
</li>
<li>
<a target="_blank"
href="https://www.linkedin.com/company/microsoft-student-community-sanins/about/"><i
class="fa fa-linkedin"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll"
data-image-src="images/undraw_connection_b38q.svg"
data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3>Wanna Join Sanins</h3>
<h1>
We are a community of <br>
Developers and Designers<br> who work
together to help <br>
each other grow.
</h1>
<div class="home-content__buttons">
<a href="https://bit.ly/3r2YX3f" class="btn btn--stroke"
target="_blank">
Join Sanins
</a>
<a href="#community" class="smoothscroll btn btn--stroke">
About Us
</a>
</div>
</div>
<div class="home-content__scroll">
<a href="#community" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<div class="home-content__line"></div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a target="_blank" href="https://www.facebook.com/mlsasanins"><i
class="fa fa-facebook"
aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/microsoftstude3"><i
class="fa fa-twitter"
aria-hidden="true"></i><span>Twitter</span></a>
</li>
<li>
<a target="_blank"
href="https://www.instagram.com/mlsa_sanins/"><i
class="fa fa-instagram"
aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a target="_blank"
href="https://www.linkedin.com/company/microsoft-student-community-sanins/about/"><i
class="fa fa-linkedin"
aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id='events' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">JOIN US IN OUR</h3>
<h1 class="display-1 display-1--light">EVENTS</h1>
</div>
</div> <!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="card-media">
<div class="card-media-object-container">
<div class="card-media-object event-img1"></div>
<span class="card-media-object-tag subtle">Deadline
Over</span>
</div>
<div class="card-media-body">
<div class="card-media-body-top">
<span class="subtle">LAST DATE:- SUN, JUN 13 2021, 11:00
AM IST</span>
<h2 class="card-heading">SWIPE-TO-KNOW</h2>
<p class="subtle2">Get a chance to be certified by
Microsoft Learn Student Ambassadors and make some
contribution <br />to the community</p>
</div>
<button>
<a href="https://forms.office.com/r/mzc7FnQPGe"
class="card-media-body-supporting-bottom-text card-media-link u-float-right">Register</a>
</button>
</div>
</div>
<div class="card-media">
<div class="card-media-object-container">
<div class="card-media-object event-img2"></div>
<span class="card-media-object-tag subtle">Upcoming</span>
</div>
<div class="card-media-body">
<div class="card-media-body-top">
<span class="subtle">SUN, JUN 14 2021, 8:00 PM
IST</span>
<h2 class="card-heading">GLOBAL LAUNCH</h2>
<p class="subtle2">We are launching our community for
the global launch.Make sure you have reserved</p>
</div>
<button>
<a href="https://forms.office.com/r/SC7kCUeeuq"
class="card-media-body-supporting-bottom-text card-media-link u-float-right">Register</a>
</button>
</div>
</div>
</div> <!-- end about-desc -->
<!--<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div class="stats__count">127</div>
<h5>Awards Received</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">1505</div>
<h5>Cups of Coffee</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">109</div>
<h5>Projects Completed</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">102</div>
<h5>Happy Clients</h5>
</div>
</div> <!-- end about-stats -->
<div class="about__line"></div>
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='community' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">COMMUNITY</h3>
<h1 class="display-2">LEARN.GROW.EMPOWER</h1>
</div>
</div> <!-- end section-header -->
<div class="row services-list block-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-paint-brush"></i>
</div>
<div class="service-text">
<h3 class="h2">How It Started?</h3>
<p>Nothing comes without hardwork and dedication,so do
us,the SANINS. Loads of efforts made it happen. From a
group of three to a community of techno-aspirants.
<ul>
<li>
We started as a community of three in the year 2019.
Stayed together to learn and grow.
</li>
<li>
We took in the similar minded people to keep focus
on learning and filling the gaps.
</li>
<li>
It was in the year of 2021 January that two of our
mates got selected for the <a
href="https://studentambassadors.microsoft.com/">Microsoft
Learn Student Ambassadors program</a>. That is
when we decided to expand.
</li>
</ul>
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-group"></i>
</div>
<div class="service-text">
<h3 class="h2">What we are?</h3>
<p>From novice to experienced the community comprises of all
minds. Our group of learners joins you with a global
network that is passionate about technologies.
<ul>
<li>
The code of conduct is to maintain a workplace
ambience where generosity is nothing much to ask.
</li>
<li>
This community is powered by a few <strong>
Microsoft Learn Student Ambassadors</strong> who
encourage you to make a difference. <a
href="https://studentambassadors.microsoft.com/">Microsoft
Learn Student Ambassadors program <strong> <a
href="#footnote">*</a></strong> </a>
amplifies your skills and prepares you for real
world problems. </li>
</ul>
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-megaphone"></i>
</div>
<div class="service-text">
<h3 class="h2">Community Architecture</h3>
<p>
<li>
With an assurance of total support and better
experience the community is further categorised into
three categories:-<br><br>
<ul>
<li>
<span class="category">SUDO SANINS</span>:
<br>The small fraction of core members.
</li>
<li>
<span class="category">SANINS</span>: <br>
The company here represents the metabolism
of the group.
</li>
<li>
<span class="category">JUNO SANINS</span>:
<br>The newbies and budding developers.
</li>
</ul>
</li>
</p>
</div>
</div>
<!--
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-earth"></i>
</div>
<div class="service-text">
<h3 class="h2">Web Design</h3>
<p>Nemo cupiditate ab quibusdam quaerat impedit magni. Earum suscipit ipsum laudantium.
Quo delectus est. Maiores voluptas ab sit natus veritatis ut. Debitis nulla cumque veritatis.
Sunt suscipit voluptas ipsa in tempora esse soluta sint.
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-cube"></i>
</div>
<div class="service-text">
<h3 class="h2">Packaging Design</h3>
<p>Nemo cupiditate ab quibusdam quaerat impedit magni. Earum suscipit ipsum laudantium.
Quo delectus est. Maiores voluptas ab sit natus veritatis ut. Debitis nulla cumque veritatis.
Sunt suscipit voluptas ipsa in tempora esse soluta sint.
</p>
</div>
</div> -->
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon"><i class="icon-lego-block"></i></div>
<div class="service-text">
<h3 class="h2">Journey</h3>
<p>
<ul>
<li>
Being able to lead to help others to grow has always
been a source of inspiration. And doing it via
community can't get any better.
</li>
<li>
That's where the Microsoft Learn Student Ambassadors
<i>Arshad Khan</i> and <i>Ankan Biswas</i> impacted
the objective.
</li>
<li>
Both have different directions regarding technology,
yet both are quick learners. From looking various
ways to explain applications of tech-world to
starting community, they believed in growth, no
matter how small things start.
</li>
<li>
And justifying their acquired positions and skills,
here they are to fill in the gaps of knowledge.
</li>
</ul>
</p>
</div>
</div>
</div> <!-- end services-list -->
<div class="team-button-div">
<a class="team-view-button" href="/pages/teams.html">VIEW TEAM</a>
</div>
</section> <!-- end s-services -->
<!-- works
================================================== -->
<!-- <section id='works' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Recent Works</h3>
<h1 class="display-2 display-2--light">We love what we do, check out some of our latest works</h1>
</div>
</div> <!-- end section-header -->
<!-- </div> <!-- end intro-wrap -->
<!--
<div class="row works-content">
<div class="col-full masonry-wrap">
<div class="masonry">
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<img src="images/portfolio/lady-shutterbug.jpg"
srcset="images/portfolio/lady-shutterbug.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Shutterbug
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div> -->
<!-- </div>
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-woodcraft.jpg" class="thumb-link" title="Woodcraft" data-size="1050x700">
<img src="images/portfolio/woodcraft.jpg"
srcset="images/portfolio/woodcraft.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Woodcraft
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-beetle.jpg" class="thumb-link" title="The Beetle Car" data-size="1050x700">
<img src="images/portfolio/the-beetle.jpg"
srcset="images/portfolio/the-beetle.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
The Beetle
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-grow-green.jpg" class="thumb-link" title="Grow Green" data-size="1050x700">
<img src="images/portfolio/grow-green.jpg"
srcset="images/portfolio/grow-green.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Grow Green
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-guitarist.jpg" class="thumb-link" title="Guitarist" data-size="1050x700">
<img src="images/portfolio/guitarist.jpg"
srcset="images/portfolio/guitarist.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Guitarist
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<!-- <div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-palmeira.jpg" class="thumb-link" title="Palmeira" data-size="1050x700">
<img src="images/portfolio/palmeira.jpg"
srcset="images/portfolio/palmeira.jpg 1x, images/portfolio/[email protected] 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Palmeira
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<!-- </div> <!-- end masonry -->
<!-- </div> <!-- end col-full -->
<!-- </div> <!-- end works-content -->
<!-- </section> <!-- end s-works -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep"
data-aos="fade-up">
<div class="col-full">
<h3 class="subhead"><b>Our fields</b></h3>
<h1 class="display-2 display-2--light">We love what we do,
check out some of our interests</h1>
</div>
<div class="interests" style="color: aliceblue;">
<div class="interest">
<img src="images/fields/webdev.webp">
<p class="interest-head"><b>WEB DEVELOPMENT</b></p>
<p class="interest-content">"Websites promote you 24/7:
No employee will do that."</p>
</div>
<div class="interest">
<img src="images/fields/appdev.webp">
<p class="interest-head"><b>APP DEVELOPMENT</b></p>
<p class="interest-content">"Your mobile device has
quickly become the easiest portal into your digital
self."</p>
</div>
<div class="interest">
<img src="images/fields/aiml.webp">
<p class="interest-head"><b>AI/ML</b></p>
<p class="interest-content">"Our intelligence is what
makes us human, and AI is an extension of that
quality."</p>
</div>
<div class="interest">
<img src="images/fields/comppro.webp">
<p class="interest-head"><b>COMPETITIVE PROGRAMMING</b>
</p>
<p class="interest-content">"All problems in computer
science can be solved by another level of
indirection."</p>
</div>
<div class="interest">
<img src="images/fields/uiux.webp">
<p class="interest-head"><b>UI/UX DESIGNING</b></p>
<p class="interest-content">"UI is the saddle, the
stirrups, & the reins. UX is the feeling you get
being able to ride the horse."</p>
</div>
<div class="interest">
<img src="images/fields/graphdes.webp">
<p class="interest-head"><b>GRAPHICS DESIGNING</b></p>
<p class="interest-content">"There are 3 responses to a
piece of Design - Yes, No & WOW! Wow is the one to
aim for."</p>
</div>
</div>
</div> <!-- end section-header -->
</div> <!-- end intro-wrap -->
</section> <!-- end s-works -->
<!-- clients
================================================== -->
<section id="clients" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Choice</h3>
<h1 class="display-2">Sanins supports and recommends these
products. Some of the most productive must have applications
</h1>
</div>
</div> <!-- end section-header -->
<div class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a href="#0" title="" class="clients__slide"><img
src="images/clients/VSCODE.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/windows.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/github.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/linkedin.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/azure.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/vsstudio.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/teams.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/forms.webp" /></a>
<a href="#0" title="" class="clients__slide"><img
src="images/clients/office.webp" /></a>
</div> <!-- end clients -->
</div> <!-- end col-full -->
</div> <!-- end clients-outer -->
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p>"Sanins is a great initiative to reach a wider
audience! Designed and tailored by fellow Microsoft
Learn Student Ambassadors with the aim to achieve a
growth mindset. I am expecting nothing more than a
great impact on digital skills, high quality events,
and workshops."</p>
<img src="images/avatars/Azmi.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Azmi Coban</span>
<span class="testimonials__pos">Microsoft Learn
Student Ambassador</span>
</div>
</div>
<!-- <div class="testimonials__slide">
<p>Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.
Nisi eaque consequatur. Quasi voluptas eius distinctio. Atque eos maxime. Qui ipsam temporibus quisquam vel.</p>
<img src="images/avatars/orochimaru.webp" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Orochimaru</span>
<span class="testimonials__pos">2nd Sanin</span>
</div>
</div>
<div class="testimonials__slide">
<p>Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.
Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.</p>
<img src="images/avatars/tsunade.webp" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Tsunade</span>
<span class="testimonials__pos">3rd Sanin</span>
</div>
</div>
-->
</div><!-- end testimonials -->
</div> <!-- end col-full -->
</div> <!-- end client-testimonials -->
</section> <!-- end s-clients -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="overlay"></div>
<div class="contact__line"></div>
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Contact Us</h3>
<h1 class="display-2 display-2--light">Reach out for a new
project or just say hello</h1>
</div>
</div>
<div class="row contact-content" data-aos="fade-up">
<div class="contact-primary">
<h3 class="h6">Send Us A Message</h3>
<form name="contactForm" id="contactForm" action=""
novalidate="novalidate" method="POST" data-netlify="true">
<fieldset>
<div class="form-field">
<input name="contactName" type="text"
id="contactName" placeholder="Your Name"
value="" minlength="2" required=""
aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactEmail" type="email"
id="contactEmail" placeholder="Your Email"
value="" required="" aria-required="true"
class="full-width">
</div>
<div class="form-field">
<input name="contactSubject" type="text"
id="contactSubject" placeholder="Subject"
value="" class="full-width">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage"
placeholder="Your Message" rows="10" cols="50"
required="" aria-required="true"
class="full-width"></textarea>
</div>
<div class="form-field">
<button type="submit"
class="full-width btn--primary">Submit</button>
<div class="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
<!-- contact-warning -->
<div class="message-warning">
Something went wrong. Please try again.
</div>
<!-- contact-success -->
<div class="message-success">
Your message was sent, thank you!<br>
</div>
</div> <!-- end contact-primary -->
<div class="contact-secondary">
<div class="contact-info">
<h3 class="h6 hide-on-fullwidth">Contact Info</h3>
<div class="cinfo">
<h5>Where to Find Us</h5>
<p>
Veer Surendra Sai University of technology<br>
Sambalpur,<br>
768018 IN
</p>
</div>
<div class="cinfo">
<h5>Email Us At</h5>
<p>
</p>
</div>
<ul class="contact-social">
<li>
<a target="_blank"
href="https://www.facebook.com/mlsasanins"><i
class="fa fa-facebook"
aria-hidden="true"></i></a>
</li>
<li>
<a target="_blank"
href="https://twitter.com/microsoftstude3"><i
class="fa fa-twitter"
aria-hidden="true"></i></a>
</li>
<li>
<a target="_blank"
href="https://www.instagram.com/mlsa_sanins/"><i
class="fa fa-instagram"
aria-hidden="true"></i></a>
</li>
<li>
<a target="_blank"
href="https://www.linkedin.com/company/microsoft-student-community-sanins/about/"><i
class="fa fa-linkedin"
aria-hidden="true"></i></a>
</li>
</ul> <!-- end contact-social -->
</div> <!-- end contact-info -->
</div> <!-- end contact-secondary -->
</div> <!-- end contact-content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row footer-main">
<div class="col-six tab-full left footer-desc">
<div class="footer-logo"></div>
Here is a golden chance for you to grab!!<br />
We, the SANINS, powered by <strong>Microsoft Learn Student Ambassador
Community</strong>, bring to you a door to realm of
knowledge and experience. Join us on a ride from being a novice
to evolving into an expert. Let's learn and grow together and
empower ourselves with a better insight into the past and
present of technology.
</div>
<div class="col-six tab-full right footer-subscribe">
<h4>JOIN US TODAY!</h4>
<p>Join hands with us to build a community of striving minds
that discover and prosper together.</p>
<div class="subscribe-form">
<form id="mc-form" class="group" novalidate="true" netlify>
<input type="email" value="" name="EMAIL" class="email"
id="mc-email" placeholder="Email Address"
required="">
<input type="submit" name="subscribe" value="Subscribe">
<label for="mc-email" class="subscribe-message"></label>
</form>
</div>
</div>
</div> <!-- end footer-main -->
<div class="row footer-bottom">
<div class="col-twelve">
<p class="foot-note"> <span id="footnote">*</span> This
community is not affiliated with Microsoft or the
Microsoft Learn Student Ambassadors program other than
it was created by Microsoft Learn Student Ambassadors.
</p>
</div>
<div class="go-top">