-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.html
1014 lines (979 loc) · 50.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
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics- Keep this at the top of the head and add to every page-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129862759-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129862759-1');
</script>
<!--This script transfers anyone viewing the website on http to the https version - keep this as close to the top of the head as possible-->
<script type="text/javascript">
var host = "w3develops.org";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Join study groups to learn to code for free or build projects with remote coding cohorts to level up your skills and beef up your portfolio to get the job.">
<meta name="keywords" content="learn to code for free, javascript, php, python, machine learning, job opportunities, get a developer job, data science, full stack developer, web development, front end developer, back end developer, projects, build projects, collaboration, code collaboration, pair programming, developer, programmer, teamwork, learn to code, groups, teams, complete, bootcamp, free code camp, code, cohort, computer science, build projects, learn, build, meetup, learn scrum, practice scrum, learn html, practice html, learn css, practice css, learn agile methodology, practice agile methodology, learn programming, practice programming, coding cohort, coding meetups, coding study groups, digital marketing, data visualization, free, community, python, machine learning, job opportunities, data science, full stack developer, front end developer, projects, javascript, collaboration, developer, teamwork, learn to code, groups, teams, complete, bootcamp, free code camp, programmers, cohort">
<meta name="author" content="https://github.com/w3develops/w3develops#contributors">
<!-- Bing site ownership verification -->
<meta name="msvalidate.01" content="3FB57F47D50D3D1C08477C58310A8345" />
<!-- Verifies site ownership to Google -->
<!-- <meta name="google-site-verification" content="NJ4hLeLZ6BXw_03UUOq0S7Oxfyz-Y3g0ScNUdhsm1Zo" /> -->
<!-- Open Graph meta tags -->
<meta property="og:title" content="w3Develops | Learn Build Collaborate Meetup">
<meta property="og:site_name" content="w3Develops">
<meta property="og:type" content="website">
<meta property="og:description" content="Join study groups to learn to code for free or build projects with remote coding cohorts to level up your skills and beef up your portfolio to get the job.">
<meta property="og:image" content="https://w3develops.org/img/branding/og-bonfire.png">
<meta property="og:url" content="https://w3develops.org/">
<meta property="og:image:alt" content="w3Develops | Learn Build Collaborate Meetup">
<!-- Twitter Card meta tags -->
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://w3develops.org/img/branding/twitter-bonfire.png">
<meta name="twitter:site" content="@w3develops">
<!-- This is for google web master to verify w3develops.org-->
<meta name="google-site-verification" content="NJ4hLeLZ6BXw_03UUOq0S7Oxfyz-Y3g0ScNUdhsm1Zo" />
<title>w3Develops | Learn Build Collaborate Meetup</title>
<!-- Required links -->
<!-- Change the href to the url of the current page this head is on -->
<link rel="canonical" href="https://w3develops.org/">
<!-- Link for Cloudflare -->
<link rel="canonical" href="https://w3develops.org"/>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/agency.min.css" rel="stylesheet">
<!-- w3Develops custom CSS (if you write any CSS for the website add it here and add a comment where it starts and ends) -->
<link href="css/w3develops.css" rel="stylesheet">
<!-- Animation styles for the hero(masthead) section -->
<!-- <link rel="stylesheet" href="css/hero.min.css"> -->
<!-- html_util.js-->
<script type="text/javascript" src="js/html_util.js"> </script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="https://w3develops.org/">w3Develops</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse text-center" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<!-- Community dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown1" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Community</a>
<div class="dropdown-menu dropdown-list text-center" aria-labelledby="navbarDropdown1">
<a class="dropdown-item dropdown-list-item" href="https://discord.gg/WphGvTT" target="_blank" rel="noopener noreferrer">Discord ChatRoom</a>
<a class="dropdown-item dropdown-list-item" href="https://github.com/w3develops/w3develops" target="_blank" rel="noopener noreferrer">Github</a>
<a class="dropdown-item dropdown-list-item" href="https://www.youtube.com/w3Develops?sub_confirmation=1" target="_blank" rel="noopener noreferrer">YouTube</a>
<a class="dropdown-item dropdown-list-item" href="https://twitter.com/w3develops" target="_blank" rel="noopener noreferrer">Twitter</a>
<a class="dropdown-item dropdown-list-item" href="https://www.linkedin.com/company/w3develops" target="_blank" rel="noopener noreferrer">LinkedIn</a>
<a class="dropdown-item dropdown-list-item" href="https://www.youtube.com/watch?v=VLZhlngst2E&list=PLTwiqKOPckq-z5E-LUpMXpcv_GWXE2k4F" target="_blank" rel="noopener noreferrer">Podcast</a>
<a class="dropdown-item dropdown-list-item" href="https://medium.com/w3develops" target="_blank" rel="noopener noreferrer">Medium</a>
<a class="dropdown-item dropdown-list-item" href="https://www.instagram.com/w3develops/" target="_blank" rel="noopener noreferrer">Instagram</a>
<a class="dropdown-item dropdown-list-item" href="https://www.facebook.com/groups/w3develops/" target="_blank" rel="noopener noreferrer">Facebook Group</a>
</div>
</li>
<!-- Map dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown2" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Learn</a>
<div class="dropdown-menu dropdown-list text-center" aria-labelledby="navbarDropdown2">
<a class="dropdown-item dropdown-list-item" href="https://developer.mozilla.org/en-US/docs/Learn" target="_blank" rel="noopener noreferrer">🔥 Frontend</a>
<a class="dropdown-item dropdown-list-item" href="https://docs.djangoproject.com" target="_blank" rel="noopener noreferrer">🚀 Backend</a>
<a class="dropdown-item dropdown-list-item" href="https://www.freecodecamp.org/learn" target="_blank" rel="noopener noreferrer">💪 Practice</a>
<a class="dropdown-item dropdown-list-item" href="https://docs.python.org/3/" target="_blank" rel="noopener noreferrer">🐍 Python</a>
<a class="dropdown-item dropdown-list-item" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noopener noreferrer">⚙️ JavaScript</a>
<a class="dropdown-item dropdown-list-item" href="http://bit.ly/w3dlg" target="_blank" rel="noopener noreferrer">📚 Study groups</a>
<a class="dropdown-item dropdown-list-item" href="http://bit.ly/w3dcohorts" target="_blank" rel="noopener noreferrer">🛠️ Team projects</a>
</div>
</li>
<!-- Groups dropdown -->
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown3" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Groups</a>
<div class="dropdown-menu dropdown-list text-center" aria-labelledby="navbarDropdown3">
<a class="dropdown-item dropdown-list-item" href="/pages/study-groups.html" target="_blank" rel="noopener noreferrer">📚 Study Groups http://bit.ly/w3dlg</a>
<a class="dropdown-item dropdown-list-item" href="/pages/build-groups.html" target="_blank" rel="noopener noreferrer">🛠️ Coding Groups http://bit.ly/w3dcohorts</a>
</div>
</li>
-->
<!-- More dropdown --> <!-- These will be links to other pages -->
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown4" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">More</a>
<div class="dropdown-menu dropdown-list text-center" aria-labelledby="navbarDropdown4">
<a class="dropdown-item dropdown-list-item" href="#" target="_blank" rel="noopener noreferrer">#</a>
</div>
</li>
-->
<!-- Donate -->
<li class="nav-item dropdown">
<a class="nav-link" href="https://paypal.me/pools/c/8oEZJpXUzK" target="_blank" rel="noopener noreferrer">Donate</a>
</li>
<!-- Sign in dropdown-->
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown5" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Sign In</a>
<div class="dropdown-menu dropdown-list text-center" aria-labelledby="navbarDropdown5">
<a class="dropdown-item dropdown-list-item" href="https://w3develops.org/dev" target="_blank" rel="noopener noreferrer">Developer Network</a>
<a class="dropdown-item dropdown-list-item" href="https://w3develops.org/marketplace" target="_blank" rel="noopener noreferrer">Marketplace (switch out this marketplace for jobberbase or similar)</a>
<a class="dropdown-item dropdown-list-item" href="https://w3develops.org/forum" target="_blank" rel="noopener noreferrer">Forum</a>
</div>
</li>
-->
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead" id="masthead" >
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Study or build projects with remote teams for free</div>
<div class="intro-heading text-uppercase">Learn, Build, Meetup, Get the Job!</div>
<a class="btn apply-btn btn-xl text-uppercase" href="http://bit.ly/w3dlg"target="_blank" rel="noopener noreferrer">
<span class="label1"></span>
</a>
<br><br>
<a class="btn apply-btn btn-xl text-uppercase" href="http://bit.ly/w3dcohorts"target="_blank" rel="noopener noreferrer">
<span class="label2"></span>
</a>
</div>
</div>
</header>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="about-us">
<img src="img/about/bonfire.jpg" class="rounded-circle img-fluid" alt="bonfire">
<h4>
<a href="https://www.youtube.com/w3Develops?sub_confirmation=1" target="_blank" rel="noopener noreferrer">
W3Develops
</a>
</h4>
<br>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://github.com/w3develops/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/w3Develops?sub_confirmation=1" target="_blank" rel="noopener noreferrer">
<i class="fab fa-youtube"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/groups/w3develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/w3develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://medium.com/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-medium"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.reddit.com/r/w3Develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-reddit"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://discord.gg/WphGvTT" target="_blank" rel="noopener noreferrer">
<i class="fab fa-discord"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/groups/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/watch?v=VLZhlngst2E&list=PLTwiqKOPckq-z5E-LUpMXpcv_GWXE2k4F" target="_blank" rel="noopener noreferrer">
<i class="fa fa-podcast"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<p class="large text-muted">
Have you ever wanted to learn to code by pairing up with other aspiring developers
and forming a study group that works around your schedule?
Or have you ever thought about leveling up your coding skills by building real world team
projects you can
show employers when you are finished? We take motivated people and put you together with
other like minded individuals in a community where you have the opportunity to level-up your
skills as a team.
<br>
These teams are also referred to as coding "cohorts". To join a cohort click one
of the "Apply" buttons above to join either a study cohort or a builder's cohort.
Cohorts launch the first of every month. Two weeks before the new cohorts start date we will
send
applicants their invites, but dont wait to start interacting with your fellow coders on Discord,
YouTube,
Twitter, Facebook, and more! Feel free to join if you are serious and focused on learning to
code 100% for free.
<br>
<strong>***If you have any questions or ideas my email is below!***</strong>
</p>
</div>
</div>
</div>
</section>
<!-- Timeline -->
<section class="page-section bg-light" id="timeline">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">w3Develops</h2>
<h3 class="section-subheading text-muted">Follow these steps:</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/timeline/1.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Step 1</h4>
<h4 class="subheading">APPLY</h4>
</div>
<div class="timeline-body">
<p class="text-muted">To study or build projects in a team environment and beef up your portfolio to get a developer job.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/timeline/2.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Step 2</h4>
<h4 class="subheading">JOIN A TEAM</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Commit yourself by joining a team of like-minded developers.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/timeline/3.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Step 3</h4>
<h4 class="subheading">BUILD PROJECTS</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Work among other developers and put your knowledge to the test.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/timeline/4.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Step 4</h4>
<h4 class="subheading">GO TO MEETUPS</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Join or host local and online meetups.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4><br>SUCCEED</h4>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Study Groups -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Pick Your Journey</h2>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-firefox fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Developer</h4>
<p class="text-muted">To apply: simply fill out this <a href="https://goo.gl/forms/EAoB1VI9c4w8UcPg2" target="_blank" rel="noopener noreferrer">PLACEMENT SURVEY</a>. If you have any questions, please feel free to send an email at w3develops@gmail.com
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-atom fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Data Scientist</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-money-bill-alt fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Digital Marketer</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-pencil-alt fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Designer</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-shield-alt fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Security</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">E-Commerce</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<button id="btnHide" type="button" class="btn btn-primary">Show All</button>
<div id="hideThese" class="hidden"> <!--hidden journeys/cohorts-->
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-php fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">PHP</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-js-square fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Javascript</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-python fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Python</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-database fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">SQL</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">C++</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-mobile fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Mobile Development</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-java fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Java</h4>
<p class="text-muted">(Coming Soon!)
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-gamepad fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Game Development</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-vr-cardboard fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Virtual Reality</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-linux fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Linux</h4>
<p class="text-muted">(Coming Soon!)
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-git fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Git</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-wordpress fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Wordpress</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-lock fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Blockchain</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-brain fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">AI</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-file-video fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Video Production</h4>
<p class="text-muted">(Coming Soon!)</p>
</div>
</div>
</div> <!--hidden journeys/cohorts-->
</div>
</section>
<!-- Cohorts Portfolio Grid -->
<section class="bg-light page-section" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Cohort Stats</h2>
<h3 class="section-subheading text-muted">Track teams/players scores, standings, schedules, and stats.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/01-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Web development</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal2">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/02-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Data Scientist</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal3">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/03-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Digital Marketing</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal4">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/04-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Web Designer</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal5">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/05-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Web Security</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal6">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/06-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>E-Commerce</h4>
<a class="btn btn-primary btn-xl text-uppercase" href="#">View All</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="page-section" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Contact Us</h2>
<h3 class="section-subheading text-muted">Learn | Build | Level Up | Get the Job</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form id="contactForm" name="sentMessage" novalidate="novalidate">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input class="form-control" id="name" type="text" placeholder="Your Name *" required="required" data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="email" type="email" placeholder="Your Email *" required="required" data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="phone" type="tel" placeholder="Your Phone *" required="required" data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" id="message" placeholder="Your Message *" required="required" data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button id="sendMessageButton" class="btn btn-primary btn-xl text-uppercase" type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer" id="footer">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://github.com/w3develops/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/w3develops">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/w3Develops?sub_confirmation=1" target="_blank" rel="noopener noreferrer">
<i class="fab fa-youtube"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://discord.gg/WphGvTT" target="_blank" rel="noopener noreferrer">
<i class="fab fa-discord"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/groups/w3develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-facebook-f"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-4">
<span class="copyright"> Made with <i class="fa fa-heart heart" alt="love"></i> for a better web</span>
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<a href="#">Privacy Policy</a>
</li>
<li class="list-inline-item">
<a href="#">Terms of Use</a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://www.instagram.com/w3develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://medium.com/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-medium"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/groups/w3develops" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.reddit.com/r/w3Develops/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-reddit"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/watch?v=VLZhlngst2E&list=PLTwiqKOPckq-z5E-LUpMXpcv_GWXE2k4F" target="_blank" rel="noopener noreferrer">
<i class="fa fa-podcast"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/01-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Threads</li>
<li>Category: Illustration</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/02-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Explore</li>
<li>Category: Graphic Design</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/03-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Finish</li>
<li>Category: Identity</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/04-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Lines</li>
<li>Category: Branding</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/05-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Southwest</li>
<li>Category: Website Design</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/portfolio/06-full.jpg" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Client: Window</li>
<li>Category: Photography</li>
</ul>
<button class="btn btn-primary" data-dismiss="modal" type="button">
<i class="fas fa-times"></i>
Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->