-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
1467 lines (1111 loc) · 63.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- important 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">
<!-- Title -->
<title>RBK ReBootKamp</title>
<!-- Basic SEO -->
<meta name="description" content="BECOME A SOFTWARE ENGINEER IN 16 WEEKS">
<meta name="keywords" content="HTML5, CSS3, JQuery, Bootstrap, Web Design, Web Development, Responsive Website,
Creative Website, RBK, ReBootKamp, Code Bootcamp, Codeing Bootcamp, Software Engineer, Learn to Code, Become a Software Engineer,
JavaScript, Github, Data Structures, Complexity Analysis, Algorithms, Function Binding, Inheritance Patterns,
HTML/CSS, D3, Ajax, Backbone, ES6, ES6/ES7, APIs, React, AngularJS, Servers, NodeJS, Server-side techniques, DBs, MongoDB, Structured Data,
SQL, noSQL, ORMs, Authentication, Deployment, Full Stack, Front End, Back End, Full Stack Development, MERN, MEAN, Angular, Amman, Jordan, Coding,
Code, Bootcamp, School, Training">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon/fav.png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl-carousel/owl.theme.default.min.css">
<!-- Responsive Tabs CSS -->
<link rel="stylesheet" href="css/responsive-tabs/responsive-tabs.min.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup/magnific-popup.min.css">
<!-- Swiper -->
<link rel="stylesheet" href="css/swiper/swiper.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate/animate.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="65">
<!-- Preloader -->
<div id="preloader">
<div id="status"> </div>
</div>
<!-- Header -->
<header>
<nav id="navbar" class="navbar navbar-fixed-top">
<div class="container-fluid">
<div class="site-nav-wrapper">
<div id="navbar-header" class="navbar-header">
<!-- Mobile Menu Open Button -->
<span id="mobile-nav-open-btn">☰</span>
<!-- Logo -->
<a id="logo" class="navbar-brand smooth-scroll" href="#home">
<img src="img/logo/logo.png" alt="logo">
</a>
</div>
<!-- Main Menu -->
<div class="container">
<div class="collapse navbar-collapse">
<ul id="navbar-nav" class="nav navbar-nav pull-right">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about-02">Program</a></li>
<li><a class="smooth-scroll" href="#clients">Outcomes</a></li>
<li><a class="smooth-scroll" href="#services">Curriculum</a></li>
<li><a class="smooth-scroll" href="#stats1">Admissions</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
<li class="btn--border btn--primary"><a href="http://rbk.org/apply/public/index.php" target="">Apply Now</a></li>
</ul>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-nav">
<!-- Mobile Menu Close Button -->
<span id="mobile-nav-close-btn">×</span>
<div id="mobile-nav-content">
<ul class="nav">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about-02">Program</a></li>
<li><a class="smooth-scroll" href="#clients">Outcomes</a></li>
<li><a class="smooth-scroll" href="#services">Curriculum</a></li>
<li><a class="smooth-scroll" href="#stats1">Admissions</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
<li class="btn--border btn--primary"><a href="http://rbk.org/apply/public/index.php" target="_blank">Apply Now</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<!-- <nav class="vertical-nav">
<a class="vertical-trigger" href="#">
<span aria-hidden="true"></span>
</a>
<ul>
<li><a id="ver-nav-1" href="#home"><span>Home</span></a></li>
<li><a id="ver-nav-2" href="#about"><span>About</span></a></li>
<li><a id="ver-nav-3" href="#team"><span>Team</span></a></li>
<li><a id="ver-nav-7" href="#stats1">Tuition</a></li>
<li><a id="ver-nav-4" href="#services"><span>Curriculum</span></a></li>
<li><a id="ver-nav-8" href="#schedule">Schedule</a></li>
<li><a id="ver-nav-5" href="#clients"><span>Partners</span></a></li>
<li><a id="ver-nav-6" href="#contact"><span>Contact</span></a></li>
</ul>
<span aria-hidden="true" class="vertical-nav-bg"></span>
</nav> -->
</header>
<!-- Header Ends -->
<!-- Home -->
<section id="home">
<!-- Background Video -->
<video id="home-bg-video" poster="video/rbk.png" autoplay loop muted>
<source src="video/rbk.mp4" type="video/mp4">
<!--
<source src="video/rbk.ogv" type="video/ogg">
<source src="video/rbk.webm" type="video/webm">
-->
</video>
<!-- Overlay -->
<div id="home-overlay"></div>
<!-- Home Content -->
<div id="home-content">
<div id="home-content-inner" class="text-center">
<div id="home-heading">
<h1 id="home-heading-1">RBK</h1><br>
<h1 id="home-heading-2">Hacking A Better <span>Future</span></h1>
</div>
<div id="home-text">
<p>Become A Software Engineer In <span>16</span> Weeks.</p>
</div>
<div id="founding-partner">
<p>Founding Partner</p>
<a href="https://www.hackreactor.com/" target="_blank">
<img id="hackreactor" class="img-responsive" src="img/logo/hack-reactor-logo-white.png" alt="hackreactor"></a>
</div>
<div id="home-btn">
<a class="btn btn-general btn-home smooth-scroll" href="#about" title="Start Now" role="button">Start
Now</a>
</div>
</div>
</div>
<!-- Arrow Down -->
<a href="#about" id="arrow-down" class="smooth-scroll">
<i class="fa fa-angle-down"></i>
</a>
</section>
<!-- Home Ends -->
<!-- About -->
<section id="about" style="background: #fff">
<!-- About 01 -->
<div id="about-01">
<div class="content-box-lg">
<div class="container">
<div class="row">
<!-- About Left Side -->
<div class="col-md-4 col-sm-6 wow slideInLeft" data-wow-duration="1s">
<div id="about-left">
<div class="vertical-heading">
<h2>A <strong>Story</strong><br>About Us</h2>
</div>
</div>
</div>
<!-- About Right Side -->
<div class="col-md-8 col-sm-10 wow slideInRight" data-wow-duration="1s">
<div id="about-right" style="margin-bottom: 15%;">
<br />
<br />
<p><br /><br />Reboot Kamp is the coding bootcamp of the Middle East. Based on the Hack Reactor
curriculum, we accomplish in 4 months what most universities in the world fail to
deliver in 4 years : market ready software engineers experienced in the world’s
favourite internet programming language.</p>
</div>
</div>
</div>
<!-- About Bottom -->
<div class="row">
<div class="col-md-12 wow fadeInUp" data-wow-duration="2s">
<div id="about-bottom">
<img src="img/about/about1.png" alt="About Us" class="img-responsive">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 01 Ends -->
<!-- Stats -->
<section id="stats">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 wow slideInLeft">
<div class="vertical-heading">
<h2><strong>Milestones</strong> </h2>
</div>
</div>
</div>
<div class="row wow fadeInUp" data-wow-duration="2s">
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 01 -->
<div class="stats-item text-center">
<i class="fa fa-graduation-cap"></i>
<h3 class="counter">115</h3>
<p>Graduates</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 02 -->
<div class="stats-item text-center">
<i class="fa fa-usd"></i>
<h4><span class="counter">800</span>JD</h4>
<p>Average Salary</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 03 -->
<div class="stats-item text-center">
<i class="fa fa-clock-o"></i>
<h3 class="counter">1,344</h3>
<p>Hours Coding</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 04 -->
<div class="stats-item text-center">
<i class="fa fa-briefcase"></i>
<!-- "fa fa-users" -->
<div>
<h4> <span class="counter">98</span>%</h4>
<p>Hiring Rate</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Ends -->
<!-- About 02 -->
<div id="about-02" style="background: #f4f4f4">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 wow fadeInLeft">
<!-- About item 01 -->
<div class="about-item text-center">
<i class="fa fa-rocket"></i>
<h3>Program</h3>
<hr>
<p>The main course of the Program is structured around the world famous Hack Reactor
curriculum. However, at RBK, we will also work on your communication, teamwork,
leadership, critical thinking and creativity skills. Just as importantly, we will
enhance your stress levels by pushing you to your maximum limit. The entire program
lasts for 16 weeks and is divided into two phases, the Prep and the Immersive. The
Prep is an onsite final assessment that you are required to pass in order to be
admitted into the Immersive phase.
</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-duration="2s">
<!-- About item 02 -->
<div class="about-item4 text-center">
<i class="fa fa-pencil"></i>
<h3>Preparation Course (PREP)</h3>
<hr>
<p>The Prep course is designed for you to test yourself and the potential of your
abilities. During four weeks, on a six days a week basis, you will experience a
slower version of the Immersive Course. Together, we will evaluate how fast you can
learn and whether you have what it takes to understand and digest the basics of
coding. If you successfully pass this course, you will be welcomed into the
Immersive Course.<br><br><br>
</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow fadeInRight">
<!-- About item 03 -->
<div class="about-item5 text-center">
<i class="fa fa-laptop"></i>
<h3>Immersive Course</h3>
<hr>
<p>This is the course that will make you shine like the diamond you already are. For a
period of 3 months, you will spend at least 12 hours a day working with your
colleagues using a technique known as pairing. In this method, you will be part of
a two-person team. For a while, you will lead your teammate as they write the code.
Then, your teammate will guide you as you write the code. Together, you will not
only learn to code faster, but you will unlock the hidden powers of your brain by
using collaborative problem solving, critical thinking and creativity.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 02 Ends -->
</section>
<!-- About Ends -->
<section id="sdg">
<div class="sdg-section">
<div class="container text-center">
<a href="https://sustainabledevelopment.un.org/sdgs" target="_blank"><img id="sdg-logo" class="img-responsive" src="img/sdg's/logo/sdg.png" alt="SDG Logo"></a>
<h3> The Sustainable Development Goals (SDGs), otherwise known as the Global Goals, are a universal call to action to end poverty, protect the planet and ensure that all people enjoy peace and prosperity.</h3>
<h4>RBK hits 9 of these goals: </h4>
<div class="swiper-container">
<div class="swiper-wrapper">
<div id="img-1" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg1" target="_blank">As a livelihoods program, RBK is rapidly vulnerable populations from poverty to prosperity.</a>
</div>
<div class="hover-overlay">
<span class="hand-info"><i class="fa fa-hand-paper-o wow fadeInRight infinite"></i></span>
</div>
</div>
<div id="img-2" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg3" target="_blank">Mindfulness training and generous psychosocial support ensures RBK grads have the mindset and self-help tools to lead a happy life. RBK also promotes good nutrition and exercise is a regular part of the daily program.</a>
</div>
</div>
<div id="img-3" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg4" target="_blank">RBK imparts 21st century skills necessary for participation in the 4th Industrial Revolution.</a>
</div>
</div>
<div id="img-4" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg5" target="_blank">Half every cohort is female.</a>
</div>
</div>
<div id="img-5" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg8" target="_blank">Placement rates of RBK alumni within 6 months of graduation is near 100%.</a>
</div>
</div>
<div id="img-6" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg9" target="_blank">RBK alumni move into the world with significant increases in creative cognition and much greater capacity to innovate.</a>
</div>
</div>
<div id="img-7" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg10" target="_blank">eXtreme Learning levels bias between hosts and refugees allowing for greater interdependence and integration.</a>
</div>
</div>
<div id="img-8" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg16" target="_blank">Fundamentally, RBK is a Peace Institute with a coding problem. It's chief mission is to equip refugees with the kinds of mental skills require to stitch back together the torn fabric of their countries.</a>
</div>
</div>
<div id="img-9" class="swiper-slide">
<div class="overlay">
<a class="info" href="https://sustainabledevelopment.un.org/sdg17" target="_blank">RBK is partnered with a range of INGOs and industry players utilizing blended finance to advance 8 SDGs.</a>
</div>
</div>
</div>
</div>
</section>
<!-- Clients -->
<section id="clients" style="background: #fff">
<div class="content-box-sm">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="horizontal-heading align-items-center">
<!-- <h5>Work With</h5> -->
<h2>Job <strong>Placement</strong></h2>
<div style="width:90%; margin:0 auto;">
<br />
<p>During your Immersive phase, you will be taught how to develop your online presence
and sharpen your interview skills with our experienced coaches. <br> As your graduation
nears, RBK will organize a career fair whereby companies will gather to introduce
themselves to you and explain their technology and culture so you can have an idea
of where you’d like to apply.<br> Following your graduation, your code will be made
available online for potential recruiters to see and assess.<br> With your CV ready,
your knowledge capital increased and your confidence high, our team will be on hand
and assist you with your job hunt.<br> RBK has partnered and developed trust with the
top tech companies in Jordan and will send your credentials to the companies that
best suit your abilities.</p>
</div>
</div>
</div>
</div>
<div class="row wow bounceInLeft" data-wow-duration="1s" data-wow-delay=".5s">
<div class="col-md-12">
<div id="clients-list" class="owl-carousel owl-theme">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Ends -->
<!-- Testimonials -->
<section id="testimonials" style="background: #f4f4f4">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 wow slideInLeft">
<div class="vertical-heading">
<h2>What Our <br><strong>Graduates</strong> Say</h2>
</div>
</div>
<div class="col-md-8 col-sm-8 wow fadeIn" data-wow-duration="2s" style="align-self:center;">
<div id="testimonial-slider" class="owl-carousel owl-theme">
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Ends -->
<!-- Services -->
<section id="services">
<!-- Services 02 -->
<div id="services-02" style="background: #fff">
<div class="content-box-md">
<div id="services-tabs">
<ul class="text-center">
<li><a href="#service-tab-0">Curriculum</a></li>
<li><a href="#service-tab-1">Prep</a></li>
<li><a href="#service-tab-2">Immersive - Junior</a></li>
<li><a href="#service-tab-3">Immersive - Senior</a></li>
</ul>
<!-- Service Tab 0 -->
<div id="service-tab-0" class="service-tab">
<div class="container">
<!-- here you can change the color of background for the pic next to Curriculum -->
<div class="row shadow" style="background: #f4f4f4">
<div class="col-md-6 hack-reactor-logo">
<img src="img/logo/hack-reactor-logo.png" alt="curriculum">
</div>
<div class="col-md-6">
<div class="tab-bg">
<h3>Curriculum</h3>
<p>
The main course of the Program is structured around the world famous Hack
Reactor curriculum. However, at RBK, we will also work on your
communication, teamwork, leadership, critical thinking and creativity
skills. Just as importantly, we will enhance your stress levels by pushing
you to your maximum limit.
</p>
<p>
A Sample of the Principles You’ll Learn
<br />
Data structures, Algorithms, jQuery, HTML/CSS, Ajax, Backbone, APIs, React,
NodeJS, Databases, Deployment, MEAN stack development, Angular and more.
Much more.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 01 -->
<div id="service-tab-1" class="service-tab">
<div class="container">
<div class="row shadow">
<div class="col-md-6 prep">
<img src="img/services/prep11.jpg" alt="prep">
</div>
<div class="col-md-6 left-border">
<div class="tab-bg">
<h3>Prep</h3>
<p>During this phase, you will learn the basic fundamentals of programming and
higher order concepts using JavaScript
</p>
<p>Functions, iteration, recursion, arrays, objects, higher order
functions,
data modeling, HTML, CSS, JQuery to name just a few
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 02 -->
<div id="service-tab-2" class="service-tab">
<div class="container">
<div class="row shadow">
<div class="col-md-6 junior">
<img src="img/services/junior.jpg" alt="Immersive - Junior">
</div>
<div class="col-md-6 left-border">
<div class="tab-bg">
<h3>Immersive - Junior</h3>
<p>You’ll take part in two-day sprints where each sprint covers a new different
concept from a different section of web development
</p>
<p>
Data structures
<br />
Front end:HTML, CSS, JQuery, Ajax Request, API’s.
<br />
Front end frameworks:React, Angular, BackBone.
<br />
Back end:Servers and Node, Databases, Authentication, Deployment.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 03 -->
<div id="service-tab-3" class="service-tab">
<div class="container">
<div class="row shadow">
<div class="col-md-6 senior">
<img src="img/services/senior.jpg" alt="Immersive - Senior">
</div>
<div class="col-md-6 left-border">
<div class="tab-bg">
<h3>Immersive - Senior</h3>
<p>You will produce something compelling using the skills you’ve honed over the
previous phase. You will be working on 4 different projects, one solo and
three other group projects with around 4 team members.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services 02 Ends -->
</section>
<!-- Services Ends -->
<!-- About 02 -->
<div id="about-02" style="background: #f4f4f4">
<div class="content-box-md" id="schedule">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 wow fadeInLeft">
<!-- About item 01 -->
<div class="about-item2 text-center">
<i class="fa fa-sun-o"></i>
<h3>Morning Schedule</h3>
<br />
<div>
<ul class="">
<li>
<strong class=daily-schedule-headline>
Breakfast
</strong>
- Arrive at 8:30 and enjoy breakfast before class begins at 9 AM.
</li>
<li>
<strong class=daily-schedule-headline>
Morning Kick-Off
</strong>
– Code challenges to hone your problem solving skills followed by introduction
to a new sprint or hacking.
</li>
<li>
<strong class=daily-schedule-headline>
Learn
</strong>
– Daily lecture on new concepts and code challenge solutions.
</li>
<li>
<strong class=daily-schedule-headline>
Hacking in Pairs
</strong>
– You’ll work with a partner on real-world projects. Leverage off each other to
do something neither of you could do alone.
</li>
<li>
<strong class=daily-schedule-headline>
Lunch
</strong>
– The big meal of the day – mansef, magluba, salads, desserts…enjoy with your
peers.
</li>
<li>
<strong class=daily-schedule-headline>
Counseling
</strong>
– An in-house counselor who is ready to listen and give you advice in addition
to group sessions with the other colleagues.
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 wow fadeInUp" data-wow-duration="2s">
<!-- About item 02 -->
<div class="about-item3 text-center">
<i class="fa fa-moon-o"></i>
<h3>Evening Schedule</h3>
<br />
<div>
<ul>
<li>
<strong class=daily-schedule-headline>
Exercise
</strong>
– 1 hour of no screens! Go kick a ball, do guided meditation or yoga, play
ping-pong, walk, climb stairs and otherwise get your body moving!
</li>
<li>
<strong class=daily-schedule-headline>
Learn
</strong>
– Daily lecture on new concepts and code challenge solutions.
</li>
<li>
<strong class=daily-schedule-headline>
Deep Coding
</strong>
– At points during the course, students take on longer projects and learn high
level meta-engineering skills around project management, team communication and
code documentation.
</li>
<li>
<strong class=daily-schedule-headline>
Dinner
</strong>
– A light meal and opportunity give the brain a rest and recharge.
</li>
<li>
<strong class=daily-schedule-headline>
Events/More Hacking
</strong>
– Guest speakers, social nights, meet our hiring partners and special events.
Class officially ends at 9 PM but many students will continue to hack into the
night. Too late to go home? Crash in one of our beanbag chairs.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 02 Ends -->
<!-- Admissions and Tuition -->
<section id="stats1">
<div class="content-box-md">
<div class="container">
<div class="row wow fadeInUp" data-wow-duration="2s">
<div class="col-md-6 col-sm-6 col-xs-12">
<!-- Stats Item 01 -->
<div class="stats-item text-center">
<h3>Admissions</h3>
<br />
<p>In order for you to succeed, we’d like to know a bit more about you. Our Admissions gate
is designed for you to test yourself and see if you have what it
takes. Ranging from mindset to technical ability, the Admissions tests will require
your full attention and time.
<br />
</p>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<!-- Stats Item 02 -->
<div class="stats-item text-center">
<h3>Tuition</h3>
<br />
<p>The cost of the program is 5,700 JoD and is payable upon final approval for admission to
the program. Although we offer scholarships as they become
available, we also have understandings with financial institutions that are willing to
grant you a loan which you can pay back comfortably when you
start your first job. If we recommend you, your loan is guaranteed. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Ends -->
<!-- Portfolio -->
<section id="portfolio" style="background: #fff">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 wow slideInLeft">
<div class="vertical-heading">
<h2>General <br><strong>Information</strong></h2>
</div>
</div>
<div class="col-md-12">
<!-- Portfolio Items Filters -->
<div id="isotope-filters">
<button class="btn active" data-filter=".services"><span>Services</span></button>
<button class="btn" data-filter=".mind"><span>Body & Mind</span></button>
<button class="btn" data-filter=".professionalism"><span>Professionalism</span></button>
</div>
</div>
</div>
</div>
<!-- Portfolio Items Wrapper -->
<section class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".5s">
<div class="container-fluid">
<div class="row no-gutters">
<div id="isotope-container">
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper1">
<img src="img/portfolio/purple.jpg" class="img-responsive edit f" alt="portfolio 01">
<div .portfolio-item-overlay1>
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>How To Ace An Interview In The Modern World</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper2">
<img src="img/portfolio/light-blue.jpg" class="img-responsive" alt="portfolio 01">
<div>
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Enhanced Technical Mentoring</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper3">
<img src="img/portfolio/pink.jpg" class="img-responsive" alt="portfolio 01">
<div>
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>21st Century Soft Skills</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper4">
<img src="img/portfolio/dark-orange.jpg" class="img-responsive" alt="portfolio 01">
<div>
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Visiting Tech Mentors</h3>