-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
901 lines (826 loc) · 34.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175461719-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-175461719-1');
</script>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>DevScript Community</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="title" content="DevScript Community">
<meta name="description"
content="DevScript is a Tech Community which was formed on 7th July,2020 with a moto : Let us COME together to LEARN & GROW. We are a vibrant knowledge society, passionate to bring a deep sense of technology for you to thrive in the real world. DevScript community provides a platform for talented and motivated students who are interested in domains like Machine Learning, Game Development, Embedded Systems and other techno-savvy fields.">
<meta name="keywords"
content="Tech, Community, Learning, Practical, Development, Software, Data Structure, Algorithm, Session, Project, Open-Source, Full Stack, MERN Stack, Machine Learning, Web Development, Data Science, Artificial Intelligence, Students, College, University, Partners, Coding, Programming, Hacking, Automation">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="1 days">
<meta name="author" content="DevScript Community">
<link rel="shortcut icon" href="assets/img/logo.png" type="image/x-icon">
<link rel="icon" href="assets/img/logo.png" type="image/x-icon">
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "DevScript",
"url": "https://devscript.org/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.google.com/search?q=communitydevscript{search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Favicons -->
<link href="assets/img/favicon.ico" rel="icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Acme&family=Rowdies:wght@700&family=Sora:wght@600&family=Sriracha&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Roboto+Slab&display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
referrerpolicy="no-referrer" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="d-flex align-items-center justify-content-between">
<a href="/" class="logo"><img src="assets/img/devscriptGreen.png" alt="logo" class="img-fluid"></a>
<!-- <h1 class="logo"><a href="/">DevScript</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="span"><a href="#JOC">Join Our Community</a></li>
<li class="span"><a href="/woc">Winter Of Code</a></li>
<!-- <li class="span"><a href="courses/">Our Courses</a></li> -->
<li class="span"><a href="#events">Past Events</a></li>
<!-- <li class="span"><a href="/team">Our Team</a></li> -->
</ul>
</nav><!-- .nav-menu -->
</div>
</div>
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-6">
<h1>DevScript <span>Community</span></h1>
<h2>Where Development meets Opportunities!</h2>
<a href="https://youtu.be/4rDvXOxKCI0" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
</div>
</div>
</div>
</section> <!-- End Hero -->
<!-- ======= About Section ======= -->
<section id="about" class="about section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h1>About Us</h1>
<p>A technical community run by Developers for techolics came forth and laid its first stone on 7th July, 2020.
We are a vibrant knowledge society, passionate to usher an intense taste of technology in enthusiasts to thrive in the real world.
DevScript community empowers a platform for tech wizards to uplift techies who are interested in domains like
Machine Learning, Game Development, and other techno-savvy fields.</p>
</div>
<div class="row" style="position: relative;">
<div class="col-lg-6 d-flex align-items-center" data-aos="fade-right" data-aos-delay="100"
style="z-index: -1;">
<!-- <img src="assets/img/services.png" class="img-fluid animated" alt="services"> -->
<div class="hero-figure anime-element">
<svg class="placeholder" width="528" height="396" viewBox="0 0 528 396">
<rect width="528" height="396" style="fill:transparent;" />
</svg>
<div class="hero-figure-box hero-figure-box-01" data-rotation="45deg"></div>
<div class="hero-figure-box hero-figure-box-02" data-rotation="-45deg"></div>
<div class="hero-figure-box hero-figure-box-03" data-rotation="0deg"></div>
<div class="hero-figure-box hero-figure-box-04" data-rotation="-135deg"></div>
<div class="hero-figure-box hero-figure-box-05"></div>
<div class="hero-figure-box hero-figure-box-06"></div>
<div class="hero-figure-box hero-figure-box-07"></div>
<div class="hero-figure-box hero-figure-box-08" data-rotation="-22deg"></div>
<div class="hero-figure-box hero-figure-box-09" data-rotation="-52deg"></div>
<div class="hero-figure-box hero-figure-box-10" data-rotation="-50deg"></div>
</div>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content d-flex flex-column justify-content-center"
data-aos="fade-up" data-aos-delay="100">
<h3>What we do?</h3>
<p class="font-italic">
We conduct meetups, technical competition, conferences and hacks that help you to develop a niche in the tech society. We help you brush up your skills regularly through hackathons and open-source events.
</p>
<ul>
<li>
<img src="./assets/img/feature-icon-04.svg" alt="feature-icon-04" class="img-fluid">
<div>
<h5> Products</h5>
<p>We work on amazing products to enhance and showcase our skills and make something beneficial for the society.</p>
</div>
</li>
<li>
<img src="./assets/img/feature-icon-01.svg" alt="feature-icon-01" class="img-fluid">
<div>
<h5>Hands-on Session</h5>
<p>Sessions that provide students with varied opportunities of learning on vivid technical topics and incorporating projects or tasks to increase the scope of knowledge.</p>
</div>
</li>
<li>
<img src="./assets/img/feature-icon-02.svg" alt="feature-icon-02" class="img-fluid">
<div>
<h5> Bootcamps </h5>
<p>We conduct 5-6 days Series of Sessions on a specific topic that assist the metamorphosis from primary to maestro levels.</p>
</div>
</li>
<li>
<img src="./assets/img/feature-icon-03.svg" alt="feature-icon-03" class="img-fluid">
<div>
<h5>Quizzes</h5>
<p>For a wide range of technical and non-technical topics we conduct quizzes
that help in expansion
of
knowledge and endorse qualities like healthy competition with fun and
excitement.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= JOC Section ======= -->
<section id="JOC" class="featured-services">
<div class="section-title">
<h1>Join Our Community</h1>
</div>
<!-- ======= JOC1 Section ======= -->
<section id="JOC1" class="d-flex align-items-center" class="JOC2">
<div class="container">
<div class="row">
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1">
<h3><strong><u style="font-family: 'Acme', sans-serif;"> BECOME A DEVSCRIPT STUDENT
PARTNER
</u></strong></h3>
<p>DevScript Student Partners program is aimed to identify energetic & passionate tech
geeks who aspire
to take the initiative and make a mark. Be the face & voice of DevScript at your
campus. We encourage
you to come with innovative ideas to accomplish each of your objectives as a Unit.
Amplify your impact
and bring together your peers to learn new skills.</p>
<strong>
<h4>Roles and Responsibilities:</h4>
</strong>
<li>Connect with other ambassadors, share resources and get recognized globally.</li>
<li>Get students to attend workshops, to enhance their skills set for future job
assistance from our
side.</li>
<li>Associate DevScript with various college societies and fest department.</li>
</ul>
</p>
<br>
<a href="https://forms.gle/7aRFELAoD71E1WDa9" target="_blank"
class="btn-get-started scrollto">Apply
Now</a>
</div>
<div class="col-lg-6 order-1 order-lg-2 JOC1-img">
<img src="assets/img/campus-ambassador-1.jpg" class="img-fluid animated"
alt="campus-ambassador">
</div>
</div>
</div>
</section><!-- End JOC1 -->
<main id="main">
<!-- ======= JOC2 Section ======= -->
<section id="JOC2" class="JOC2">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-5 d-flex align-items-center justify-content-center JOC2-img">
<img src="assets/img/illustration-2.png" class="img-fluid animated" alt="mentor"
data-aos="zoom-in">
</div>
<div class="col-lg-6 pt-5 pt-lg-0"><br><br>
<h3><strong><u style="font-family: 'Acme', sans-serif;"> Join Our Team
</u></strong></h3>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<p><strong>DevScript is hiring team members! Can you be the one?</strong>
It's been a year and DevScript has its roots thick in the tech space. A
community that aims at uniting technophiles from every domain and empowering
a knowledge platform in the most engaging and focused ways.
</p>
<p>
With that being said, DevScript evolved to be a community of 6k+ community
members. Holding this motivation along, <strong>DevScript is transforming
and
will be leading the grounds of tech as a Product based Tech Community.
</strong>
For this big change, we need your hands! The hands of courage to create a
vital
influence on devs around who thrive in tech.
DevScript calls you to join the remarkable Community for making lasting
change!
<p>
Get more details here and hop in to apply!
</p>
</p>
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1">
<a href="https://forms.gle/gi8WJ7FeoifFSQbc6" target="_blank"
class="btn-get-started scrollto">Apply Now</a>
</div>
</div>
<!-- -->
</div>
</div>
</div>
</section><!-- End JOC2 Section -->
</section>
<!-- ======= Featured Services Section ======= -->
<section id="events" class="featured-services">
<div class="section-title">
<h1>Our Past Events</h1><br><br>
</div>
<div class="container upcoming" data-aos="fade-up">
<div class="row d-flex justify-content-center">
<iframe width="400" height="615" src="https://www.youtube.com/embed/4rDvXOxKCI0">
</iframe>
</div>
</div>
</div>
</section>
<!--End Featured Services Section -->
<!-- ======= Services Section ======= -->
<section id="past-event" class="services">
<div class="container" data-aos="fade-up">
<!--
<div class="section-title">
<div class="section-title">
<h1>Past Events</h1><br><br>
</div>
</div> -->
<div class="row d-flex justify-content-center">
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<!-- <a href="#popup1"><i class="fa fa-arrows-alt" style="float:right;"></i></a> -->
<div class="pastAbout">
<div class="icon"><img
src="https://img.youtube.com/vi/sJldE-1OPpA/maxresdefault.jpg"></img>
</div>
<h4 class="title"><a target="_blank"
href="https://www.youtube.com/watch?v=sJldE-1OPpA">Super Saga in
Astronomy</h4></a>
<h6>A lot of people wonder how it feels to be an astronaut, the busy life, lots of
work to operate the
many science
experiments on board, or the experience of spacewalk to work outside the station
in the
spacesuit.???
</h6>
</div>
<div class="speaker">
<div class="col-sm-12 col-md-12 col-lg-12"><u>Speaker:</u>
<a href="https://www.linkedin.com/in/cosmoakshat/">
<p class="techStack">Akshat Mohite</p>
</a>
</div>
</div>
</div>
<div id="popup1" class="popup-container">
<div class="popup-content">
<a href="#pop" class="close">×</a>
<h3>FPS using Unreal Engine <a target="_blank"
href="https://www.youtube.com/channel/UCQWgtNSqWGu_PJFQqAiCSNw"><i
class="fa fa-youtube"></i></a>
</h3>
<div class="container">
<div class="row">
<div class="col">
<iframe width="100%" height="100%"
src="https://www.youtube.com/embed/3QBMphdVjQM"
allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<!-- <a href="#popup2"><i class="fa fa-arrows-alt" style="float:right;"></i></a> -->
<div class="pastAbout">
<div class="icon"><img
src="https://img.youtube.com/vi/80fnSK-FoB4/maxresdefault.jpg"></img>
</div>
<h4 class="title"><a target="_blank"
href="https://www.youtube.com/watch?v=80fnSK-FoB4">ALL ABOUT
QUANTUM COMPUTING</h4></a>
<h6>Shalaka guides the audience through the latest advances in the quantum world and
share her own
journey in Quantum
Science.</h6>
</div>
<div class="speaker">
<div class="col-sm-12 col-md-12 col-lg-12"><u>Speaker:</u>
<a href="https://www.linkedin.com/in/praveentech/">
<p class="techStack">Shalaka Verma</p>
</a>
</div>
</div>
</div>
<div id="popup2" class="popup-container">
<div class="popup-content">
<a href="#pop" class="close">×</a>
<h3>Building Personal Portfolio Website <a target="_blank"
href="https://www.youtube.com/channel/UCQWgtNSqWGu_PJFQqAiCSNw"><i
class="fa fa-youtube"></i></a>
</h3>
<div class="container">
<div class="row">
<div class="col">
<iframe width="100%" height="100%"
src="https://www.youtube.com/embed/x0Rs9B3kcd8"
allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<!-- <a href="#popup3"><i class="fa fa-arrows-alt" style="float:right;"></i></a> -->
<div class="pastAbout">
<div class="icon"><img
src="https://img.youtube.com/vi/8johMddKPWE/maxresdefault.jpg"></img>
</div>
<h4 class="title"><a target="_blank"
href="https://www.youtube.com/watch?v=8johMddKPWE">Data
Structures
and Algorithm and Interview Preparation</h4></a>
<h6>Looking to add more values in your resume?? Join our amazing session on Data
Structure and
Algorithms to help you stand out from others.</h6>
</div>
<div class="speaker">
<div class="col-sm-12 col-md-12 col-lg-12"><u>Speaker:</u>
<a href="https://www.linkedin.com/in/abhishek-raj-permani-495483156/">
<p class="techStack">Abhishek Raj Permani</p>
</a>
</div>
</div>
</div>
<div id="popup3" class="popup-container">
<div class="popup-content">
<a href="#pop" class="close">×</a>
<h3>Session on Git and GitHub <a target="_blank"
href="https://www.youtube.com/channel/UCQWgtNSqWGu_PJFQqAiCSNw"><i
class="fa fa-youtube"></i></a>
</h3>
<div class="container">
<div class="row">
<div class="col">
<iframe width="100%" height="100%"
src="https://www.youtube.com/embed/9XkAIgmYVFA"
allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<!-- <i class="icofont-simple-smile"></i> -->
<i class="icofont-telegram"></i>
<span data-toggle="counter-up">6782</span>
<p>Community Members</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<!-- <i class="icofont-document-folder"></i> -->
<i class="icofont-brainstorming"></i>
<span data-toggle="counter-up">5</span>
<p>Hands-On Session</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<!-- <i class="icofont-live-support"></i> -->
<i class="icofont-education"></i>
<span data-toggle="counter-up">1</span>
<p>Bootcamps</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="icofont-users-alt-5"></i>
<span data-toggle="counter-up">15</span>
<p>Team Members</p>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<section id="speakers">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="section-title">
<div class="section-title">
<h1>OUR PAST SPEAKERS</h1>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/Sarah Williams.jpg" alt="user" />
<h3>Sarah Williams</h3>
<p>Community Program Manager <br /> Microsoft</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/williams-k-sarah/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/Pooja Sund.jpg" alt="user" />
<h3>Pooja Sund</h3>
<p>Director of Data Analytics <br /> Microsoft</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/pooja3p/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/Juan Pablo.jpg" alt="user" />
<h3>Juan Pablo Flores Cortés</h3>
<p>Program Manager<br /> Github</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/juanpflores94/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/Shalaka Verma.jpg" alt="user" />
<h3>Shalaka Verma</h3>
<p>Director, Partner Technology <br /> Microsoft</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/shalakaverma/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/Prateek Narang.jpg" alt="user" />
<h3>Prateek Narang</h3>
<p>Software Engineer <br /> Google</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/prateek-narang-0108b39a/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 d-flex justify-content-center">
<div class="card-container">
<img class="round" src="assets/img/speakers/karan m.v.jpg" alt="user" />
<h3>Karan M.V.</h3>
<p>Developer Relations Manager <br /> GitHub</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/mvkaran/">
<button class="primary">
Follow
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients section-bg align-items-center">
<div class="container" data-aos="zoom-in">
<div class="section-title">
<div class="section-title">
<h1>Our Past Sponsors</h1><br><br>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/github.png" alt="GitHub" loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/Merge.png" alt="Merge" loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/codingNinja.png" alt="Coding Ninja"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/auth0.png" alt="Auth0" loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/SkillShip.png" alt="SkillShip"
loading=lazy></div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/codingBlocks.png" alt="Coding Blocks"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/digital_ocean.png" alt="Digital Ocean"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/replit.png" alt="repl.it"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/hackclubBank.png" alt="Hack Club Bank"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/9ledgepro.png" alt="9Ledge Pro"
loading=lazy></div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/stickerMule.png" alt="Sticker Mule"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/dailydev.png" alt="Daily.dev"
loading=lazy></div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img height="230" src="./assets/img/sponsors/amphan.png"
alt="Amphan Tech" loading=lazy></div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/linode.png" alt="Linode" loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/myjen.svg" alt="MyJen.ai"
loading=lazy>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 d-flex align-items-center justify-content-center">
<div class="partners p-3">
<div class="icon"><img src="./assets/img/sponsors/progate.png" alt="Progate"
loading=lazy>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Clients Section -->
<section id="socials" class="social-section">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-lg-6 discord">
<a href="https://discord.gg/uutnrnc" class=social-icon><i class="bx bxl-discord"></i></a>
<div class="social-text">Join Discord</div>
</div>
<div class="col-sm-12 col-lg-6 telegram">
<a href="https://t.me/DevScript_WOC" class=social-icon><i class="bx bxl-telegram"></i></a>
<div class="social-text">Join Our Telegram Community</div>
</div>
</div>
</div>
</section>
<!-- ======= Testimonials Section ======= -->
<div class="section-title">
<div class="text-center">
<h1>Featured People</h1>
</div>
</div>
<section id="testimonials" class="testimonials">
<div class="container" data-aos="zoom-in">
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="assets/img/testimonials/winner.PNG" class="testimonial-img" alt="sakshi thakur">
<h1>Sakshi Thakur</h1>
<h4>Winner of Scripto-Mania 1.0</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It was an interactive session. Both the hosts were enthusiastic and conducted the
quiz
smoothly. One
more good catch was that the quiz was taken on kahoot due to which there wasn't even
a
single second to
search anything on the internet. All in all, it was an amazing experience✨
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="https://github.com/chait04.png" class="testimonial-img" alt="Chaitanya Khachane">
<h1>Chaitanya Khachane</h1>
<h4>DevScript Winter Of Code</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Thanks for organizing such a great event I meet so many good people and enjoyed alot
during event. Also thanks for
boosting my confidence in contributing to open source I will defenetly gonna
continue my
contribution to the projects.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="https://github.com/musavveer.png" class="testimonial-img" alt="Musavveer Rehaman">
<h1>Musavveer Rehaman</h1>
<h4>DevScript Winter Of Code</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It was amazing contributing to open source. Learnt lots of things and new
technologies.
Got an insight of managing large
projects.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="https://github.com/muthuannamalai12.png" class="testimonial-img"
alt="Muthu Annamalai Venkatachalam">
<h1>Muthu Annamalai Venkatachalam</h1>
<h4>DevScript Winter Of Code</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Thank you for conducting this event. It helped me to kick-off my journey with
open-source.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Contact Section ======= -->
</main><!-- End #main -->
<!-- ==============================================
CONTACT
=============================================== -->
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col d-flex align-items-center justify-content-center text-center"><span>©<span
class='year'></span>
Amphan Technologies Pvt.
Ltd. <br />All Rights Reserved</span></div>
<div class="col d-flex align-items-center justify-content-center"><a href="/">
<img class="header-logo-image" src="assets/img/logo.png" alt="Logo">
</a></div>
<div class="col d-flex align-items-center justify-content-end">
<ul class="footer-social-links list-reset">
<li>
<a href="https://www.youtube.com/c/devscript/"><i class="fa fa-youtube"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/company/devscripts/"><i
class="fa fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.github.com/DevScript/"><i class="fa fa-github"></i></a>
</li>
<li>
<a href="https://www.instagram.com/the_devscript/"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="https://www.twitter.com/The_DevScript"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="https://t.me/DevScript"><i class="fa fa-telegram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- ==============================================
FOOTER
=============================================== -->
<div id="preloader"></div>
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<script src="assets/js/action.js"></script>
<!-- <script src="assets/js/particles.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> -->
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> -->
<script src="https://kit.fontawesome.com/e730246f0e.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js"></script>
<script src="https://unpkg.com/[email protected]/lib/anime.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script src="assets/js/p5.js"></script>
</body>
</html>