-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
806 lines (674 loc) · 39.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Home | App Dev League</title>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="App Dev League"/>
<meta property="og:title" content="Home"/>
<meta property="og:image" content="https://appdevleague.org/assets/img/favicon.png"/>
<meta property="og:url" content="https://appdevleague.org"/>
<meta property="og:description"
content="App Dev League, a student-led non profit, is devoted to bringing computer science education to underrepresented students."/>
<!-- Favicons -->
<link href="/assets/img/favicon.png" rel="icon">
<link href="/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Jost:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="/assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="/assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="/assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="/assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="/assets/vendor/aos/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"/>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/index-style.css" rel="stylesheet"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167896725-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-167896725-1');
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top ">
<div class="container d-flex align-items-center">
<h1 class="logo mr-auto">
<a href="/">
<img src="/assets/img/favicon.png" style="vertical-align: middle;"> <span
style="vertical-align: middle;">ADL</span>
</a>
</h1>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active nav-elem"><a href="/">Home</a></li>
<li class="drop-down"><a href="/about">About</a>
<ul>
<li><a href="/about#mission">Our Mission</a></li>
<li><a href="/about#team">The Team</a></li>
<li><a href="/about#partners">Partners</a></li>
<li><a href="/about#sponsors">Sponsors</a></li>
</ul>
</li>
<li class="drop-down"><a href="/events">Initiatives</a>
<ul>
<li><a href="/events">Events</a></li>
<li><a href="https://appathon.appdevleague.org" target="_blank">Appathon</a></li>
<li><a href="/initiatives/mentorship">Mentorship Program</a></li>
<!-- <li><a href="/initiatives/teaching-app">Teaching App</a></li>-->
<li><a href="/initiatives/youtube">YouTube</a></li>
</ul>
</li>
<li class="nav-elem"><a href="/contact">Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
<a href="/get-involved" class="get-started-btn scrollto">Get Involved</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-1"
data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/favicon.png" style="max-width: 150px;">
<h1>APP DEV LEAGUE</h1>
<h2 style="font-size: 20px;">Diversifying the Application Developer Community</h2>
<div class="d-lg-flex">
<a href="/get-involved" class="btn-get-started scrollto">Get Involved</a>
<a href="/events" class="btn-get-started" target="_blank" style="margin-left: 1rem">View Events</a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="zoom-in" data-aos-delay="200">
<img src="/assets/img/hero-img.png" class="img-fluid" alt="">
<!-- <div class="social-links-mp">
<a href="https://www.facebook.com/appdev.league" target="_blank"><i class="bx bxl-facebook-square"></i></a>
<a href="https://www.instagram.com/appdevleague/" target="_blank"><i class="bx bxl-instagram"></i></a>
<a href="https://linktr.ee/AppDevLeague" target="_blank"><i class="bx bxs-tree"></i></a>
<a href="https://www.youtube.com/channel/UCxhMD8Fvm5LP6QzdrYnFixA" target="_blank"><i class="bx bxl-youtube"></i></a>
</div>
<iframe src="https://discord.com/widget?id=794821116933701683&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe> -->
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
<h4 style="font-size: 18px; color: rgb(86, 91, 97)">Largest Coalition of High School Student-Run App
Development Teachers</h4>
</div>
<div class="row content">
<div class="col-lg-6">
<p>
App Dev League, a student-led nonprofit, is devoted to bringing computer science education to
underrepresented students. We specifically focus on application development and AI. Our goals
include
</p>
<ul>
<li><i class="ri-check-double-line"></i> <b>Fostering</b> support for students who lack CS
opportunities
</li>
<li><i class="ri-check-double-line"></i> <b>Increasing</b> the diversity in STEM communities and
the workforce
</li>
<li><i class="ri-check-double-line"></i> <b>Empowering</b> students to make a social impact in
their
communities
</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
The COVID global pandemic has affected billions of individuals worldwide and most importantly
<b>students’ education</b>. Through our various iniatiatives from a <b>free teaching app</b> to
our monthly events and <b>conferences</b>, our students
will have the power to make a <b>global impact</b> right from their homes by creating cool
websites and apps!
</p>
<a href="/about" class="btn-learn-more">Learn More About Us</a>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Why Us Section ======= -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg" style="background-color: #e9e9ee">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6 d-flex align-items-center" data-aos="fade-right" data-aos-delay="100">
<img src="/assets/img/skills.png" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left" data-aos-delay="100">
<h3>Our Experience</h3>
<p class="font-italic">
What the community has to say about us.
</p>
<div class="skills-content">
<div class="progress">
<span class="skill">Would Recommend to a Friend <i class="val">99%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="99" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Enjoyed Our Events <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Knowledge Gained From Events <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Would Attend Another Event <i class="val">93%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="93" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row counters" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">5000+</span>
<p>Students Reached</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">30+</span>
<p>Schools Worked With</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">20</span>
<p>Partners</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">10</span>
<p>Events Hosted</p>
</div>
<script>
var updatedCounters = false;
window.addEventListener('scroll', function () {
var element = document.querySelectorAll('span[data-toggle="counter-up"]')[0];
var position = element.getBoundingClientRect();
if (position.top >= 0 && position.bottom <= window.innerHeight) {
// fully visible
}
if (position.top < window.innerHeight && position.bottom >= 0) {
if (!updatedCounters) {
updatedCounters = true;
updateCounters();
}
}
});
var finalCounts = [5000, 30, 20, 10];
for (var i = 0; i < document.querySelectorAll('span[data-toggle="counter-up"]').length; i++) {
if (document.querySelectorAll('span[data-toggle="counter-up"]')[i].innerHTML.includes("+")) {
document.querySelectorAll('span[data-toggle="counter-up"]')[i].innerHTML = "0+";
} else {
document.querySelectorAll('span[data-toggle="counter-up"]')[i].innerHTML = "0";
}
}
function updateCounters() {
var element1 = document.querySelectorAll('span[data-toggle="counter-up"]')[0];
for (let i = 0; i <= finalCounts[0]; i++) {
setTimeout(() => {
element1.innerHTML = i + "+";
}, (1500 * i) / finalCounts[0]);
}
var element2 = document.querySelectorAll('span[data-toggle="counter-up"]')[1];
for (let i = 0; i <= finalCounts[1]; i++) {
setTimeout(() => {
element2.innerHTML = i + "+";
}, (1500 * i) / finalCounts[1]);
}
var element3 = document.querySelectorAll('span[data-toggle="counter-up"]')[2];
for (let i = 0; i <= finalCounts[2]; i++) {
setTimeout(() => {
element3.innerHTML = i;
}, (1500 * i) / finalCounts[2]);
}
var element4 = document.querySelectorAll('span[data-toggle="counter-up"]')[3];
for (let i = 0; i <= finalCounts[3]; i++) {
setTimeout(() => {
element4.innerHTML = i;
}, (1500 * i) / finalCounts[3]);
}
}
</script>
</div>
</div>
</section><!-- End Skills Section -->
<section id="services" class="services" style="background-color: #37517e">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2 style="color: white;">Events</h2>
</div>
<div class="getinolv">
<div class="col" data-aos="zoom-in">
<div class="row justify-content-between">
<div class="col-lg-8 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-1"
style="max-width: 650px; color: white;">
<h2 class="card-title" style="font-family: sans-serif; font-weight: bold; font-size: 45px">Competitive Events <i class="fas fa-trophy"></i></h2>
<p class="card-text" style="font-size: 20px;">Every year, App Dev League hosts the <a
href="http://appathon.appdevleague.org/" target="_blank" style="color: white"><b><u>ADL
appathon</u></b></a>. The
Appathon is the world's
first Application Development Conference designed for students of all backgrounds.
</p>
<center>
<a href="https://appathon.appdevleague.org" class="btn-learn-more" target="_blank">ADL
Appathon 2021</a>
</center>
</div>
<div class="col-lg-4 order-1 order-lg-2 hero-img" data-aos="zoom-in" data-aos-delay="200">
<img src="/assets/img/events.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="monthly-events" class="services"
style="position: relative; min-height: 450px; background-image: linear-gradient(#fff, #fff);">
<div class="container" data-aos="fade-up" style="margin-top: 50px">
<div class="getinolv">
<div class="col" data-aos="zoom-in">
<div class="row justify-content-between">
<div class="col-lg-4 order-1 order-lg-1 hero-img" data-aos="zoom-in" data-aos-delay="200">
<img src="/assets/img/monthly.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-2"
style="max-width: 650px; color: black">
<h2 class="card-title" style="font-family: sans-serif; font-weight: bold; font-size: 45px">Monthly Events <i class="fas fa-clipboard"></i></h2>
<p class="card-text" style="text-align: start; font-size: 16px;">App Dev League strives to offer monthly
workshops, camps, and webinars
on a variety of Computer Science disciplines with a focus on Application Development and
AI. These project-oriented events are a great
way for students to not only get introduced to a new concept, but also to apply it in a
real-life applicable project.
</div>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"
style="position: absolute;top: 0; width: 100%; height: 12vw;">
<polygon fill="#37517e" points="0,0 0,30 100,0"/>
</svg>
</section>
<section id="technicalhelp" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Technical Help</h2>
</div>
<div class="getinolv">
<div class="row card-deck" data-aos="zoom-in">
<div class="col-lg-6 ">
<div class="card" style="margin: 5px; padding: 2px; min-height: 517px">
<div class="card-body" style="">
<h4 class="card-title">Mentorship Program <i class="fas fa-handshake"></i></h4>
<hr style="background-color: #1b1e21"/>
<p class="card-text">App Dev League’s mentorship program is a tutoring program
where
students can learn Computer Science 1-on-1.</p>
<ul style="list-style: none; padding: 0;">
<li class="mentorshipli"><span style="font-weight: bold">Flexible - </span> Litany
of topics and adjustable course agenda
</li>
<li class="mentorshipli"><span style="font-weight: bold">Interactive - </span>
Engaging lesson slides, kahoots, and fun quizzes
</li>
<li class="mentorshipli"><span style="font-weight: bold">Hands On - </span> Numerous
projects along the course
</li>
<li class="mentorshipli"><span style="font-weight: bold">Personalized Help - </span>
1 v 1 sessions with personalized content
</li>
</ul>
<br>
<center>
<img src="/assets/img/events_background.png" class="img-fluid" alt=""
style="width: 300px; height: auto; border-radius: 10px;">
</center>
</div>
</div>
</div>
<div class="col-lg-6 ">
<div class="card" style="margin: 5px; padding: 2px; min-height: 505px">
<div class="card-body" style="text-align: left">
<h4 class="card-title">Devnetic App <i class="fas fa-mobile"></i></h4>
<hr style="background-color: #1b1e21"/>
<p class="card-text">App Dev League is launching an interactive teaching app for
students to learn about Application Development and AI
through a series of interactive multiple choice questions, videos, as well as a
gamified leveling up system.</p>
<br>
<br>
<center>
<img src="/assets/img/devnetic.png" class="img-fluid" alt=""
style="width: 380px; height: auto; border-radius: 10px;">
</center>
<!--<a href="https://docs.google.com/forms/d/e/1FAIpQLSdwbrP1plwpsT8PbUTh6mfj9zOz7_T6KfhBYnzA-ZMNMM0D8g/viewform" target="_blank" class="btn btn-primary">Apply Now</a>-->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container" data-aos="zoom-in">
<div class="section-title">
<h2>Testimonials</h2>
<p>What People Say</p>
</div>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<center>
<div style="width: 90%">
<h3>Alex</h3>
<h4>6th Grader</h4>
<blockquote class="quote">
Before this camp, I had tried out other coding camps, but none of them were
great.
Then
I got an email from App Dev League. I hesitated to sign-up, but I eventually did
and
that was probably the best choice I have made coding-wise before this camp. I
didn't
know anything about code, but with this camp, I have learned more about coding
in
more
than all of the other classes I have taken combined!! The greatest thing about
this
camp
is that it is free!!! The instructors are great, and so on, there isn't much you
could
say is bad, so if you are reading this, you have to try out this camp.
</blockquote>
</div>
</center>
</div>
<div class="testimonial-item">
<center>
<div style="width: 80%">
<h3>Zyrene</h3>
<h4>11th Grader</h4>
<blockquote class="quote">
I appreciate App Dev League in general because they offer such programs amid
pandemic.
Their mission is relevant to everyone, especially those who are anxious about
what's
happening in the world right now, that nothing can stop them from learning new
things or
mastering their skills. As a student, taking the time and making efforts are not
a
joke.
They still manage to contribute to society regardless of their plans and time. I
am
very
grateful for all the help. Thank you for such a wonderful contribution!
</blockquote>
</div>
</center>
</div>
<div class="testimonial-item">
<center>
<div style="width: 80%">
<h3>Harrison</h3>
<h4>10th Grader</h4>
<blockquote class="quote">
The App Dev League's "Learn to Code" workshop was a great experience! I have
never
coded
before, and this was a great place to start! Our instructor gave very thorough
and
simple instructions to help out us beginners, but I still learned a lot.
Overall, a
very
well run class, and I appreciate it!
</blockquote>
</div>
</center>
</div>
<div class="testimonial-item">
<center>
<div style="width: 80%">
<h3>Joshua</h3>
<h4>9th Grader</h4>
<blockquote class="quote">
App Dev League's Basic Web Dev course was awesome. I went into it trying to
learn
about
how to make a website, and the teacher was awesome and walked us through each
part
of
HTML, CSS, and Javascript, calmly and easily, making the class both fun and
enriching!
</blockquote>
</div>
</center>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Testimonials Section -->
<section id="why-us" class="why-us section-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="row">
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content">
<h3>Frequently Asked Questions</h3>
</div>
<br/>
<div class="accordion-list">
<ul>
<li>
<a data-toggle="collapse" class="collapse" href="#accordion-list-1"><span>01</span> How
can I sign up for your free events? <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse show" data-parent=".accordion-list">
<p>
We will constantly update our events page with details about our upcoming
events. All our events will be free, and you can view more information about
them by clicking the "read more" button under each event.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#accordion-list-2" class="collapsed"><span>02</span>What
types of events do you offer year round? <i
class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-2" class="collapse" data-parent=".accordion-list">
<p>
App Dev League strives to serve the underprivileged community through a variety
of educational events, such as our signature Appathon event, workshops, courses,
and camps. More info can be found on the events
page. You can also contact us if you have more questions regarding the content
of these events.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#accordion-list-3" class="collapsed"><span>03</span>What
skills will I acquire from attending your events? <i
class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-3" class="collapse" data-parent=".accordion-list">
<p>
Through our courses and camps, you will not only learn how to build websites and
apps, but you will also have a chance to delve into other CS disciplines such as
AI and Game Development. Our competitive events like the Appathon and AppDev
bowl
will provide you with real-life applicable CS and entrepreneurship skills.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#accordion-list-4" class="collapsed"><span>04</span>What
makes this program unique? <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-4" class="collapse" data-parent=".accordion-list">
<p>
During this COVID pandemic, many free resources have been created to provide
free CS education. However, most of these resources lack 1 v 1 oversight and
beginner-friendly content. Our goal is to provide free education in not only an
accessible but also interactive manner to underprivileged children.
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style='background-image: url("assets/img/why-us.png");' data-aos="zoom-in" data-aos-delay="150">
</div>
</div>
</div>
</section><!-- End Why Us Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 footer-contact">
<h3>ADL</h3>
Copyright © 2019-21 by App Dev League, Inc. <br><br/>
Registered as a 501(c)(3) tax-deductible non profit organization (EIN: 85-3376559)<br><br>
<strong>Email:</strong> <a
href="mailto:contact@appdevleague.org">contact@appdevleague.org</a><br><br>
<br><br>
<p> Created and maintained by <a href="https://github.com/orgs/App-Dev-League" target="_blank">App
Dev League's</a> Tech Team</p>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Quick Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="/">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/about">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/about#team">Team</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/events">Events</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/contact">Contact</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/get-involved">Get Involved</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Socials</h4>
<p>Make sure to check out our socials and follow them!</p>
<div class="social-links mt-3">
<a href="https://www.facebook.com/appdev.league" target="_blank" class="facebook"><i
class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/appdevleague/" target="_blank" class="instagram"><i
class="bx bxl-instagram"></i></a>
<a href="https://discord.gg/FtegFYAuZ6" target="_blank" class="google-plus"><i
class="bx bxl-discord"></i></a>
<a href="https://www.youtube.com/channel/UCxhMD8Fvm5LP6QzdrYnFixA" target="_blank"
class="linkedin"><i class="bx bxl-youtube"></i></a>
<a href="https://www.linkedin.com/company/appdevleague/" target="_blank"
class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- ======= Modal ======= -->
<div class="custom-modal" id="events-modal">
<p><i style="cursor: pointer;" class="far fa-times-circle"
onclick='this.parentNode.parentNode.style.transform = "translate(0, calc(-100% - 30px))";'></i>
<ul>
<li>Join our community <a href="https://discord.gg/FtegFYAuZ6">Discord</a></li>
<li>Reference the <a href="/events" target="_blank">events</a></li>
<li>Check out our <a href="https://linktr.ee/AppDevLeague" target="_blank">socials</a></li>
</ul>
</div>
<div class="modal fade" id="events-modal-popout" tabindex="-1" role="dialog" aria-labelledby="events-modal-label"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document" style="width: 100%!important">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="events-modal-label">Check this out!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body text-center">
<iframe style="display: block;margin:auto"
src="https://discord.com/widget?id=794821116933701683&theme=dark" width="350" height="500"
allowtransparency="true" frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
<div class="row" style="width: 350px; margin: auto; padding: 1rem;">
<div class="col">
<a class="btn btn-primary" href="/events" target="_blank">Events</a>
</div>
<div class="col">
<a class="btn btn-primary" href="https://linktr.ee/AppDevLeague" target="_blank">LinkTree™</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
setTimeout(function () {
document.querySelector("#events-modal").style.transform = "translate(calc(-100% - 30px), calc(-100% - 30px))";
}, 2000);
</script>
<!-- End Modal -->
<a href="#" class="back-to-top"><i class="ri-arrow-up-line"></i></a>
<div id="preloader">
<img src="/assets/img/favicon.png"
style="top: 50%; left: 50%; position: absolute; transform: translate(-50%, -50%); width: 40px; height: 40px;">
</div>
<!-- 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/isotope-layout/isotope.pkgd.min.js"></script>
<script src="/assets/vendor/venobox/venobox.min.js"></script>
<script src="/assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="/assets/vendor/aos/aos.js"></script>
<!-- <script>
$('#events-modal-popout').modal('show');
</script> -->
<!-- Template Main JS File -->
<script src="/assets/js/main.js"></script>
</body>
</html>