-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1429 lines (1410 loc) · 56 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>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js",
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-TWLQ78S");
</script>
<!-- End Google Tag Manager -->
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/bootstrap/css/bootstrap.min.css"
/>
<!-- Vendor/Plugins CSS -->
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/animate-css/animate.min.css"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/slick/slick.css"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/slick/slick-theme.css"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/magnific-popup/magnific-popup.css"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700%7COpen+Sans:400,600,700&display=swap"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="vendor/material-design-iconic-font/css/material-design-iconic-font.min.css"
/>
<link
type="text/css"
rel="stylesheet"
media="all"
href="fonts/flaticon/flaticon.css"
/>
<!-- Bootbox Template CSS -->
<link type="text/css" rel="stylesheet" media="all" href="css/main.css" />
<title>
Study Now | Pay Later | Guaranteed Placements | Career Bootcamp
</title>
<meta
name="description"
content="Career bootcamp by Coding Blocks is a program where students can study without paying any upfront fees and pay when they get hired."
/>
<meta
name="keywords"
content="ISA, Income sharing agreement, Study now and pay later, Interview, Career, Camp, Bootcamp, Scholarship, Placement, Hiring, Jobs"
/>
<meta
name="keyphrase"
content="Study now and pay later in Career bootcamp program by Coding Blocks"
/>
<meta name="robots" content="index, follow" />
<meta name="copyright" content="codingblocks.com" />
<meta name="revisit-after" content="7 days" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta
name="abstract"
content="designed and developed by Coding Blocks Private Limited"
/>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="canonical" href="https://career-bootcamp.codingblocks.com/" />
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png" />
<link
rel="apple-touch-icon"
sizes="114x114"
href="/apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="/apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="/apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="/apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/android-icon-192x192.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<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">
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-TWLQ78S"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- START Loader -->
<div id="preloader">
<div class="blobs">
<div class="blob-center"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
</div>
</div>
<!-- END Loader -->
<!-- START Header -->
<header class="header position-relative">
<!-- START Navigation -->
<div class="navigation-bar" id="affix">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light navbar-reset">
<a class="logo" href="index.html">
<img
class="logo-default"
src="img/logo-light.png"
alt="Bootbox"
/>
</a>
<button
class="navbar-toggler border-0 p-0"
type="button"
data-toggle="collapse"
data-target="#theme-navbar"
aria-controls="theme-navbar"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-lines"></span>
</button>
<div class="collapse navbar-collapse" id="theme-navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#B1">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#B2">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="syllabus.html"
>Syllabus</a
>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="#B3">Mentors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#B4">Fee</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#B5">Success</a>
</li>
</ul>
<div class="my-3 my-lg-0">
<a href="application-form.html" class="btn btn-custom">Apply now</a>
</div>
</div>
</nav>
</div>
</div>
<!-- END Navigation -->
</header>
<!-- END Header -->
<!-- START Section Hero -->
<section class="section-hero">
<div class="banner position-relative">
<div class="container">
<div class="row align-items-center">
<div
class="col-lg-6 col-12 text-lg-left text-center"
data-wow-delay="0.2s"
>
<div class="banner-text">
<h1 class="c-white mb-3 mb-md-4">
Learn now... <br />Pay when hired
</h1>
<p class="c-white">
<strong> Career Bootcamp</strong> by Coding Blocks is a
6-month long program which trains students at ZERO upfront
fee. Only after being placed in a job will the student pay the
fee from their monthly salary for a duration spanning up to 2
years
</p>
<p class="c-white">
<strong>
Next Test on 16th July, 2022 (7:00PM)<br />Career Bootcamp
Classroom Program starts on 30th July, 2022.<br />
Register free for the test,
<a
class="c-white"
href="application-form.html"
>Click Here</a
></strong
>
</p>
<a href="application-form.html" class="btn btn-custom">Apply now</a>
</div>
</div>
<div
class="col-lg-6 col-12 d-none d-lg-block wow zoomIn"
data-wow-delay="0.4s"
>
<div class="banner-img">
<img src="img/home/banner-vector.png" alt="business" />
</div>
</div>
</div>
</div>
</div>
<div class="curve-shape">
<svg
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
width="846px"
height="875px"
>
<defs>
<linearGradient id="PSgrad_0" x1="0%" x2="100%" y1="0%" y2="0%">
<stop offset="0%" stop-color="rgb(112,90,228)" stop-opacity="1" />
<stop offset="0%" stop-color="rgb(78,98,215)" stop-opacity="1" />
<stop
offset="100%"
stop-color="rgb(118,190,233)"
stop-opacity="1"
/>
</linearGradient>
</defs>
<path
fill-rule="evenodd"
opacity="0.4"
fill="rgb(113, 180, 231)"
d="M772.494,875.000 C772.494,875.000 1003.238,671.570 647.028,530.599 C647.028,530.599 385.842,375.193 552.111,250.572 C645.545,180.541 651.008,41.335 376.458,5.950 C376.458,5.950 223.512,-23.950 130.756,50.715 C130.756,50.715 0.060,131.198 -0.000,300.905 C-0.049,439.755 1.152,875.000 1.152,875.000 L772.494,875.000 Z"
/>
<path
fill="url(#PSgrad_0)"
d="M772.494,875.000 C772.494,875.000 1003.238,671.570 647.028,530.599 C647.028,530.599 385.842,375.193 552.111,250.572 C645.545,180.541 651.008,41.335 376.458,5.950 C376.458,5.950 223.512,-23.950 130.756,50.715 C130.756,50.715 0.060,131.198 -0.000,300.905 C-0.049,439.755 1.152,875.000 1.152,875.000 L772.494,875.000 Z"
/>
</svg>
</div>
</section>
<!-- END Section Hero -->
<!-- START Section About -->
<section class="about-section bg-white">
<div class="container">
<div class="clients">
<h3 class="top-sep">Get placed at</h3>
<div class="client-slider" id="client-slider">
<div class="item">
<img src="img/client/client-1.png" alt="Google" />
</div>
<div class="item">
<img src="img/client/client-2.png" alt="Microsoft" />
</div>
<div class="item">
<img src="img/client/client-3.png" alt="Adobe" />
</div>
<div class="item">
<img src="img/client/client-4.png" alt="Zomato" />
</div>
<div class="item">
<img src="img/client/client-5.png" alt="Amazon" />
</div>
<div class="item">
<img src="img/client/client-6.png" alt="Goldman Sachs" />
</div>
<div class="item">
<img src="img/client/client-7.png" alt="Samsung" />
</div>
<div class="item">
<img src="img/client/client-8.png" alt="CueMath" />
</div>
<div class="item">
<img src="img/client/client-9.png" alt="Uber" />
</div>
<div class="item">
<img src="img/client/client-10.png" alt="Ola" />
</div>
<div class="item">
<img src="img/client/client-11.png" alt="Nagarro" />
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-6 order-lg-last text-center text-lg-left">
<div class="title-left">
<h3 class="top-sep" id="B1">About the course</h3>
</div>
<ul class="list-one">
<li>Learn from your home with Interactive Live classes</li>
<li>World class mentors with Industry aligned content</li>
<li>Guidance by Industry experts</li>
<li>
Dedicated live Doubt support & dedicated Teaching Assistants
</li>
<li>Placement assurance program</li>
<li>Course certificate upon completion</li>
<li>No upfront fee, pay only when you get hired</li>
</ul>
<br />
<a href="syllabus.html" class="btn btn-custom">
View Curriculum
<i class="zmdi zmdi-long-arrow-right ml-2"></i>
</a>
</div>
<div class="col-lg-6 d-none d-lg-block order-lg-first">
<img
src="img/pages/about-img2.png"
class="img-fluid pr-lg-4"
alt="Business"
/>
</div>
</div>
</div>
</section>
<!-- END Section About -->
<!-- START Section Services -->
<section class="service-section overlay-bg bg-light sp-100-70">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title title-left text-center text-lg-left">
<h3 class="top-sep" id="B2">The Roadmap</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-search-engine"></i>
</div>
<h5 class="btm-sep">1. Apply</h5>
<p>
Students apply for the Career Bootcamp program by
<a href="application-form.html"><strong><u>Clicking here</u></strong></a>
</p>
</div>
</div>
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-computer"></i>
</div>
<h5 class="btm-sep">2. Take the test</h5>
<p>
Students take the online test which helps us evaluate their
candidature
</p>
</div>
</div>
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-consultation"></i>
</div>
<h5 class="btm-sep">3. Get shortlisted</h5>
<p>
Students selected in the online test are shortlisted for an
interview round
</p>
</div>
</div>
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-seo"></i>
</div>
<h5 class="btm-sep">4. Interview round</h5>
<p>
Shortlisted candidates will be invited for a face-to-face
discussion over video chat
</p>
</div>
</div>
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-management"></i>
</div>
<h5 class="btm-sep">5. Start learning</h5>
<p>
Students selected after both rounds will be invited to enrol. A
focussed batch begins its journey towards success
</p>
</div>
</div>
<div class="col-xl-4 col-md-6 col-12 mb-30">
<div class="service-box">
<div class="icon-box">
<i class="flaticon-deal"></i>
</div>
<h5 class="btm-sep">6. Get hired</h5>
<p>
Students will get guidance on resume & interview preparation and
will appear for placements
</p>
</div>
</div>
</div>
</div>
</section>
<!-- END Section Services -->
<!-- START Section Mentors -->
<section class="team-section bg-w sp-100-70">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title title-left text-center text-lg-left">
<h3 class="top-sep" id="B3">Our Mentors</h3>
<p>
World-class mentors and industry-aligned content come together
to train & guide the students to reach their destination - their
dream jobs!
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/kartik.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Kartik Mathur</h5>
<p class="text-uppercase mb-0">Founding member<br />(NSIT)</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/sabeel.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Sabeel</h5>
<p class="text-uppercase mb-0">
Lead mentor<br />(Ace Web dev | Jamia)
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/mayank.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Mayank</h5>
<p class="text-uppercase mb-0">
Lead mentor<br />(Competitive prog. | IP)
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/sapra.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Kartik Sapra</h5>
<p class="text-uppercase mb-0">
Lead mentor<br />(GSOCer | UIET)
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/princey.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Princey</h5>
<p class="text-uppercase mb-0">
Lead mentor<br />(NSIT | IIIT Delhi)
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="team-item">
<div class="mb-30 position-relative d-flex align-items-center">
<span class="img-holder d-inline-block">
<img src="img/team/shubham.png" alt="Team" />
</span>
</div>
<div class="team-content">
<h5 class="mb-2">Shubham</h5>
<p class="text-uppercase mb-0">Lead mentor<br />(IIIT Delhi)</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END Section Mentors -->
<!-- START Section Fee -->
<section class="bg-light sp-100-70">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h3 class="top-c-sep" id="B4">Fee</h3>
<p>
Students have two options to pay, first one includes a partial
upfront fee and 7.5% of salary for 2 years after placement with
a cap of ₹1 lac & the other one has no upfront fee and 15% of
salary for 2 years after placement with a max cap of ₹1.5 lac.
Program & fee details are mentioned below:
</p>
</div>
</div>
</div>
<div class="text-center"></div>
<div class="tab-content wow fadeIn">
<div role="tabpanel" class="tab-pane fade show active" id="yearly">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-30">
<div class="price-item text-center">
<div class="price-top">
<h4>Upfront model</h4>
<h2 class="mb-0"><sup></sup>₹ 30,000</h2>
<span>upon Course start</span><br />
<span>7.5% of salary for 2 years</span>
</div>
<div class="price-content">
<ul class="border-bottom mb-30 mt-md-4 pb-3 text-left">
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">Interactive live classes</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">World class mentors</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">Industry aligned content</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black"
>Dedicated Teaching assistant</span
>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Live Doubt support</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Guidance by Industry experts</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Assured Placements</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Course Completion Certificate</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span
><strong
>Minimum assured Salary of ₹5,00,000 CTC per
year</strong
></span
>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span
><strong
>₹30,000/- upon Course start, 7.5% of salary for two
years with a max cap of ₹1,00,000</strong
></span
>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-30">
<div class="price-item text-center popular">
<div class="price-top">
<h4>Zero upfront model</h4>
<h2 class="mb-0"><sup></sup>₹ 0</h2>
<span>upon Course start</span><br />
<span>15% of salary for 2 years</span>
</div>
<div class="price-content">
<ul class="border-bottom mb-30 mt-md-4 pb-3 text-left">
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">Interactive live classes</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">World class mentors</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black">Industry aligned content</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span class="c-black"
>Dedicated Teaching assistant</span
>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Live Doubt support</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Guidance by Industry experts</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Assured Placements</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span>Course Completion Certificate</span>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span
><strong
>Minimum assured Salary of ₹5,00,000 CTC per
year</strong
></span
>
</li>
<li>
<i class="zmdi zmdi-check mr-2"></i>
<span
><strong
>₹0/- upon Course start, 15% of salary for two years
with a max cap of ₹1,50,000</strong
></span
>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END Section Fee -->
<!-- START Section Counter -->
<section class="sp-100-70 bg-gradi counters-section" id="counters">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h3 class="top-c-sep c-white">Numbers that make us proud</h3>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-lg-3 col-md-6 mb-30">
<div class="counter-box d-flex d-lg-block">
<div class="icon-box mb-3">
<i class="zmdi zmdi-hc-fw"></i>
</div>
<div class="ml-5 ml-lg-0 pt-1 pt-lg-0">
<h3 class="mb-2 count" data-count="90000">0</h3>
<p class="c-black">Students</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-30">
<div class="counter-box d-flex d-lg-block">
<div class="icon-box mb-3">
<i class="zmdi zmdi-hc-fw"></i>
</div>
<div class="ml-5 ml-lg-0 pt-1 pt-lg-0">
<h3 class="mb-2 count" data-count="25000">0</h3>
<p class="c-black">Success stories</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-30">
<div class="counter-box d-flex d-lg-block">
<div class="icon-box mb-3">
<i class="zmdi zmdi-hc-fw"></i>
</div>
<div class="ml-5 ml-lg-0 pt-1 pt-lg-0">
<h3 class="mb-2 count" data-count="80">0</h3>
<p class="c-black">Years Teaching exp.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-30">
<div class="counter-box d-flex d-lg-block">
<div class="icon-box mb-3">
<i class="zmdi zmdi-hc-fw"></i>
</div>
<div class="ml-5 ml-lg-0 pt-1 pt-lg-0">
<h3 class="mb-2 count" data-count="100">0</h3>
<p class="c-black">Projects</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END Section Counter -->
<!-- START Section Testimonials -->
<section class="sp-100 overlay-bg bg-light testimonial-section">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h3 class="top-c-sep" id="B5">Success stories</h3>
<p>
We are extremely proud of our students and their success, which
follows after their hard work and effort.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div
id="testimonial-slider"
class="testimonial-slider mb-0 text-center"
>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img
src="img/testimonial/Aditya.jpeg" style="height: 100%;"
alt="Client"
/>
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">Aditya</h5>
<p>
<strong>Amazon</strong>
</p>
<p class="mb-0">
Coding Blocks is the best choice I made in my career. I
always dreamt of making it to the Tech bigwigs and after
having a discussion with one of the mentors at Coding
Blocks, I decided that I will go with them. Everyone here is
so brilliant, passionate and focussed. Coding Blocks helped
me in becoming an ace coder and then with Mock coding rounds
and experienced Industry coaches telling us how to crack
various companies. Wish Coding Blocks all the success in
future, big thanks.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img src="img/testimonial/Rishabh-Zomato.jpeg" alt="Client" />
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">
Rishabh Kumar Bothra
</h5>
<p>
<strong> Zomato</strong>
</p>
<p class="mb-0">
I would like to thank Kartik Bhaiya, for his advice,
support, and guidance. I learned a lot in my classes with
Kartik Bhaiya. He paces the class in such a way that you
feel challenged but not frustrated. Without his training and
mentorship, it really helped me to upskill myself and crack placements.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img
src="img/testimonial/Prince-flipkart.jpeg"
alt="Client"
/>
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">
Prince Mittal
</h5>
<p>
<strong> Flipkart</strong>
</p>
<p class="mb-0">
Hello fellow coders, my name is Prince Mittal, coming from a
very basic coding background I was very skeptical about my
career ahead. I was later informed by one of my friend about
the Career Bootcamp program at Coding Blocks. I visited the
center and was so much convinced with the program, I got my
hands on various DSA and Web-Dev projects which were indeed
industry leading. All thanks to Kartik Mathur sir for his
expert mentorship and getting me at Flipkart!
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img src="img/testimonial/testi1.png" alt="Client" />
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">
Paridhi Sachdeva
</h5>
<p>
<strong>Adobe systems</strong>
</p>
<p class="mb-0">
Coding Blocks has helped me in mastering programming and in
securing a job in my dream company. The Assignments are out
of the world and help you become an Ace coder.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img
src="img/testimonial/Kumail-sharechat.jpeg"
alt="Client"
/>
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">Kumail</h5>
<p>
<strong> Share chat</strong>
</p>
<p class="mb-0">
Kartik bhaiya's teaching methods are great. They are very
clear and concise. His classes seem like play but there is a
lot of serious learning going on. I was already an
intermediate student, but I learned something from every
class, plus had a lot of fun doing it! It is because of
Kartik bhaiya that I was able to land a job at ShareChat so
easily. Thank you Coding Blocks!
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img
src="img/testimonial/Raj-Kumar-CaptainFresh.jpeg"
alt="Client"
/>
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">Raj Kumar</h5>
<p>
<strong> Captain Fresh</strong>
</p>
<p class="mb-0">
I had a hard time solving even simple coding questions, I
decided to take the Coding Blocks course. Coding Blocks
designed all the courses so carefully and discreetly that I
noticed a big change in my performance within a few weeks.
Everything was going step by step. Before the Captain Fresh
interview, I had a stronghold on Data Structure and
Algorithms and CS fundamentals which helped me sail through
the crucial interview rounds and landed me a job as a SDE at
Captain Fresh. I owe my success to Coding Blocks!
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img src="img/testimonial/testi2.png" alt="Client" />
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">Iti Jain</h5>
<p>
<strong>Morgan Stanley</strong>
</p>
<p class="mb-0">
Hands on coding & problems discussed in classes turn the
tide & helps you excel. Coding Blocks not only strengthened
my coding but also helped me come up as a full stack Web
dev.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="img-holder mx-auto mx-md-0">
<img src="img/testimonial/aditi.png" alt="Client" />
</div>
<div class="testimonial-content text-center text-md-left">
<h5 class="btm-sep btm-sep-center pb-3 mb-3">
Aditi Aggarwal
</h5>
<p>
<strong>Goldman Sachs</strong>
</p>
<p class="mb-0">
Coding Blocks has played a phenomenal role in my success.
The Mentors are really awesome, knowledgeable and are always