-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1202 lines (1141 loc) · 43.9 KB
/
about.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>
<title>About - Regional College</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" href="images/logo.png" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> -->
</head>
<body>
<nav
class="navbar navbar-expand-lg ftco_navbar bg-dark ftco-navbar-light position-sticky scrolled"
id="ftco-navbar"
>
<div class="container">
<a class="navbar-brand" href="index.html"
><span>Regional </span>College</a
>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#ftco-nav"
aria-controls="ftco-nav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item active">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="course.html" class="nav-link">Course</a>
</li>
<li class="nav-item">
<a href="feat.html" class="nav-link">Features</a>
</li>
<li class="nav-item">
<a href="gallery.html" class="nav-link">Photos</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- <!- END nav -->
<section
class="hero-wrap hero-wrap-2"
style="background-image: url('images/about_cover_img.jpeg')"
>
<div class="overlay"></div>
<div class="container">
<div
class="row no-gutters slider-text align-items-end justify-content-center"
>
<div class="col-md-9 ftco-animate pb-5 text-center">
<p class="breadcrumbs">
<span class="mr-2"
><a href="index.html"
>Home <i class="fa fa-chevron-right"></i></a
></span>
<span>About us </span>
</p>
<h1 class="mb-0 bread">About Us</h1>
</div>
</div>
</div>
</section>
<!--
<section class="ftco-section ftco-about img">
<div class="container">
<div class="row d-flex">
<div class="col-md-12 about-intro">
<div class="row">
<div class="col-md-6 d-flex">
<div class="d-flex about-wrap">
<div class="img d-flex align-items-center justify-content-center" style="background-image:url(images/about-1.jpg);">
</div>
<div class="img-2 d-flex align-items-center justify-content-center" style="background-image:url(images/about.jpg);">
</div>
</div>
</div>
<div class="col-md-6 pl-md-5 py-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<span class="subheading">Enhanced Your Skills</span>
<h2 class="mb-4">Learn Anything You Want Today</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
<p><a href="#" class="btn btn-primary">Get in touch with us</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-counter img" id="section-counter" style="background-image: url(images/bg_4.jpg);">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-3 d-flex justify-content-center counter-wrap ftco-animate">
<div class="block-18 d-flex align-items-center">
<div class="icon"><span class="flaticon-online"></span></div>
<div class="text">
<strong class="number" data-number="400">0</strong>
<span>Online Courses</span>
</div>
</div>
</div>
<div class="col-md-3 d-flex justify-content-center counter-wrap ftco-animate">
<div class="block-18 d-flex align-items-center">
<div class="icon"><span class="flaticon-graduated"></span></div>
<div class="text">
<strong class="number" data-number="4500">0</strong>
<span>Students Enrolled</span>
</div>
</div>
</div>
<div class="col-md-3 d-flex justify-content-center counter-wrap ftco-animate">
<div class="block-18 d-flex align-items-center">
<div class="icon"><span class="flaticon-instructor"></span></div>
<div class="text">
<strong class="number" data-number="1200">0</strong>
<span>Experts Instructors</span>
</div>
</div>
</div>
<div class="col-md-3 d-flex justify-content-center counter-wrap ftco-animate">
<div class="block-18 d-flex align-items-center">
<div class="icon"><span class="flaticon-tools"></span></div>
<div class="text">
<strong class="number" data-number="300">0</strong>
<span>Hours Content</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section testimony-section bg-light">
<div class="overlay" style="background-image: url(images/bg_2.jpg);"></div>
<div class="container">
<div class="row pb-4">
<div class="col-md-7 heading-section ftco-animate">
<span class="subheading">Testimonial</span>
<h2 class="mb-4">What Are Students Says</h2>
</div>
</div>
</div>
<div class="container container-2">
<div class="row ftco-animate">
<div class="col-md-12">
<div class="carousel-testimony owl-carousel">
<div class="item">
<div class="testimony-wrap py-4">
<div class="text">
<p class="star">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
<p class="mb-4">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<div class="d-flex align-items-center">
<div class="user-img" style="background-image: url(images/person_1.jpg)"></div>
<div class="pl-3">
<p class="name">Roger Scott</p>
<span class="position">Marketing Manager</span>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap py-4">
<div class="text">
<p class="star">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
<p class="mb-4">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<div class="d-flex align-items-center">
<div class="user-img" style="background-image: url(images/person_2.jpg)"></div>
<div class="pl-3">
<p class="name">Roger Scott</p>
<span class="position">Marketing Manager</span>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap py-4">
<div class="text">
<p class="star">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
<p class="mb-4">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<div class="d-flex align-items-center">
<div class="user-img" style="background-image: url(images/person_3.jpg)"></div>
<div class="pl-3">
<p class="name">Roger Scott</p>
<span class="position">Marketing Manager</span>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap py-4">
<div class="text">
<p class="star">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
<p class="mb-4">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<div class="d-flex align-items-center">
<div class="user-img" style="background-image: url(images/person_1.jpg)"></div>
<div class="pl-3">
<p class="name">Roger Scott</p>
<span class="position">Marketing Manager</span>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap py-4">
<div class="text">
<p class="star">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
<p class="mb-4">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<div class="d-flex align-items-center">
<div class="user-img" style="background-image: url(images/person_2.jpg)"></div>
<div class="pl-3">
<p class="name">Roger Scott</p>
<span class="position">Marketing Manager</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-intro ftco-section ftco-no-pb">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<div class="img" style="background-image: url(images/bg_4.jpg);">
<div class="overlay"></div>
<h2>We Are StudyLab An Online Learning Center</h2>
<p>We can manage your dream building A small river named Duden flows by their place</p>
<p class="mb-0"><a href="#" class="btn btn-primary px-4 py-3">Enroll Now</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section services-section">
<div class="container">
<div class="row d-flex">
<div class="col-md-6 heading-section pr-md-5 ftco-animate d-flex align-items-center">
<div class="w-100 mb-4 mb-md-0">
<span class="subheading">Welcome to StudyLab</span>
<h2 class="mb-4">We Are StudyLab An Online Learning Center</h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<div class="d-flex video-image align-items-center mt-md-4">
<a href="#" class="video img d-flex align-items-center justify-content-center" style="background-image: url(images/about.jpg);">
<span class="fa fa-play-circle"></span>
</a>
<h4 class="ml-4">Learn anything from StudyLab, Watch video</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-12 col-lg-6 d-flex align-self-stretch ftco-animate">
<div class="services">
<div class="icon d-flex align-items-center justify-content-center"><span class="flaticon-tools"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Top Quality Content</h3>
<p>A small river named Duden flows by their place and supplies</p>
</div>
</div>
</div>
<div class="col-md-12 col-lg-6 d-flex align-self-stretch ftco-animate">
<div class="services">
<div class="icon icon-2 d-flex align-items-center justify-content-center"><span class="flaticon-instructor"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Highly Skilled Instructor</h3>
<p>A small river named Duden flows by their place and supplies</p>
</div>
</div>
</div>
<div class="col-md-12 col-lg-6 d-flex align-self-stretch ftco-animate">
<div class="services">
<div class="icon icon-3 d-flex align-items-center justify-content-center"><span class="flaticon-quiz"></span></div>
<div class="media-body">
<h3 class="heading mb-3">World Class & Quiz</h3>
<p>A small river named Duden flows by their place and supplies</p>
</div>
</div>
</div>
<div class="col-md-12 col-lg-6 d-flex align-self-stretch ftco-animate">
<div class="services">
<div class="icon icon-4 d-flex align-items-center justify-content-center"><span class="flaticon-browser"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Get Certified</h3>
<p>A small river named Duden flows by their place and supplies</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- ABOUT SECTION -->
<section id="about" class="py-3">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>OUR VISION</h1>
<p>
A vision where every achievement motivates us to set the bar even
higher. A vision where Regional College offerings are continuously
updated in keeping with the ever changing global business
environment. A vision where we are committed to meeting our social
responsibilities, while setting high standards for all our stake
holders. A vision and a challenge which we at Regional College
have pursued relentlessly over the years. As Regional College's
vision has taken shape and grown, quite naturally the people
associated with Regional College's have also grown in tandem. Our
bright young students have developed their minds and have embarked
upon promising careers in the corporate world. Our Students have
developed their latent managerial and leadership capabilities, and
several of them have made it right to the top in their respective
organizations. We are committed towards creating a community which
is vibrant and which provides a lifelong learning experience and
professional development.
</p>
</div>
<div class="col-md-6">
<img
src="images/about_img1.jpg"
alt=""
class="img-fluid rounded-circle d-none d-md-block about-img"
/>
</div>
</div>
</div>
</section>
<section class="py-3">
<div class="container">
<div class="row">
<div class="col-md-7">
<img
src="images/about_img2.jpg"
alt=""
class="img-fluid rounded-circle d-none d-md-block about-img"
/>
</div>
<div class="col-md-5">
<h1>OUR MISSION</h1>
<p>
To identify young people with professional aspirations, talents &
determination and trigger them off to become ethics & values
driven business leaders, by enlightening & enabling them to have
right perspectives, and grooming them with knowledge, insights,
skills, healthy habits and envisioning & intuitive abilities so
that they act original with clear vision, conviction & confidence,
being competent, and thus be an inspiration to others, besides
charting their own success/ purpose. To infuse in them action
orientation and the core values of hard-work, self discipline,
sense of purpose, commitment, responsibility & accountability,
thoroughness, partnership, camaraderie, co-operative striving,
social & environmental concern and a spirit of community service,
so that they, through enlightened ways & means, spread prosperity,
peace, harmony and happiness around.., and thus, create a cadre of
inspiring, competent and powerful role models of action & change
who, in turn, will empower and embolden others by being examples.
</p>
</div>
</div>
</div>
</section>
<section class="py-3">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>OUR INSPIRATION</h1>
<h5>Abraham Lincoln's letter to his son's headmaster</h5>
<br />
<p>
"My son will have to learn I know, that all men are not just, all
men are not true. But teach him that for every scoundrel there is
a hero; that for every selfish politician, there is a dedicated
leader. Teach him that for every enemy there is a friend. It will
take time, I know, but teach him, if you can, that a dollar earned
is of far more value than five found. Teach him to learn to lose
and also to enjoy winning. Steer him away from envy, if you can.
Teach him the secret of quiet laughter. Let him learn early that
the bullies are the easiest to lick. Teach him, if you can, the
wonder of books... but also give him quiet time to ponder over the
eternal mystery of birds in the sky, bees in the sun and flowers
on a green hill side. In school teach him it is far more honorable
to fail than to cheat. Teach him to have faith in his own ideas,
even if everyone tells him they are wrong. Teach him to be gentle
with gentle people and tough with the tough. Try to give my son
the strength not to follow the crowd when everyone is getting on
the band wagon. Teach him to listen to all men. But teach him also
to filter all the hears on a screen of truth and take only the
good that comes through. Teach him, if you can, how to laugh when
he is sad. Teach him there is no shame in tears. Teach him to
scoff at cynics and to beware of too much sweetness.Teach him to
sell his brawn and brain to the highest bidders; but never to put
a price tag on his heart and soul. Teach him to close his ears to
a howling mob... and to stand and fight if he thinks he is right.
Treat him gently; but do not cuddle him because only the test of
fire makes fine steel. Let him have the courage to be impatient,
let him have the patience to be brave. Teach him always to have
the sublime faith in himself because then he will always have the
sublime faith in mankind.This is a big order, but see what you can
do... He is such a fine little fellow, my son". This great man's
vision is an inspiration for us.
</p>
</div>
<div class="col-md-6">
<img
src="images/im4.png"
alt=""
class="img-fluid rounded-circle d-none d-md-block about-img"
/>
</div>
</div>
</div>
</section>
<section id="blog" class="py-3">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-2">
<div class="card-columns">
<div class="card">
<img
src="images/im6.jpg"
alt=""
class="img-fluid card-img-top"
/>
<div class="card-body">
<h4 class="card-title">KC GUPTA CA</h4>
<small class="text-muted"><b>DIRECTOR</b></small>
<hr />
<p class="card-text">
Regional College is an organization with a heart and soul
striving to create executive and entrepreneurial leaders. We
look for such conviction driven students and parents to be
its patron members_ We wish that students come prepared and
parents stand by us, for this beautiful journey.Together we
will ensure that the time spent with us will be both
educational and enjoyable, combining the best in cultural
experience and academic excellence.
</p>
</div>
</div>
<div class="card">
<img
src="images/im7.jpg"
alt=""
class="img-fluid card-img-top"
/>
<div class="card-body">
<h4 class="card-title">DR. URMILA JOSHI</h4>
<small class="text-muted"><b>DIRECTOR</b></small>
<hr />
<p class="card-text">
Regional College offers students from all over the region a
dynamic, supportive and creative environment in which they
are encouraged to pursue personal excellence resulting in
enhanced prospects for career development. This ensures that
our students are ready to face any challenge in today's
dynamic environment with great confidence. Regional College
is here to build leaders for tomorrow's industry., I welcome
you to explore the wealth of opportunities at Regional
College.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-2">
<div class="card-columns">
<div class="card">
<img
src="images/im8.jpg"
alt=""
class="img-fluid card-img-top"
/>
<div class="card-body">
<h4 class="card-title">AMARJEET SINGH BAGGA</h4>
<small class="text-muted"><b>DIRECTOR</b></small>
<hr />
<p class="card-text">
We quite appreciate the fact that the challenges of pursuing
an advanced course of study are considerable, especially for
students in today's world. Regional College aims to provide
a supportive environment in which individuals feel valued,
grow in confidence and fulfill their potential for academic,
moral, social and physical development. Our teaching and
mentoring have made significant impact in the last twelve
years of our existence. I am looking forward to welcome you
at Regional College.
</p>
</div>
</div>
<div class="card">
<img
src="images/im9.jpg"
alt=""
class="img-fluid card-img-top"
/>
<div class="card-body">
<h4 class="card-title">DR. SANJAY WADHWA</h4>
<small class="text-muted"><b>CEO</b></small>
<hr />
<p class="card-text">
We recognise that choosing your college of higher learning
is one of the most important decisions that you will make in
your life. Regional College aims at providing you with a
distinctive combination of academic excellence and
professional relevance. Here you will build valuable skills,
experience and qualities you need to be successful in life
and work. I take this opportunity to welcome you all to the
college and do hope that you will have ample opportunities
for continued intellectual and personal growth.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="faq" class="p-5 bg-dark text-white">
<div class="container">
<h1 class="text-center text-white">SALIENT FEATURES</h1>
<hr />
<div class="row">
<div class="col-md-6">
<div class="accordion" id="accordion">
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseOne" data-toggle="collapse">
<b>PROMOTED & RUN BY ACADEMICIANS</b>
</a>
</h5>
</div>
<div id="collapseOne" class="collapse">
<div class="card-body text-black-50">
Regional College is the result of vision of a group of
commerce academicians who had desire to fill the vacuum in
degree college education by infusing quality learning
coupled with practical and industry focused education. When
the vision is clear and the promoters are determined to
achieve set goals, no surprise this college has a very long
way to go.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseTwo" data-toggle="collapse">
<b>EXTREMELY TALENTED FACULTY</b>
</a>
</h5>
</div>
<div id="collapseTwo" class="collapse">
<div class="card-body text-black-50">
We have a team of extremely talented & dedicated faculty who
have a long professional experience in institutions of
repute. At Regional College, faculty members collectively
bring in methodological mastery, intellectual rigor,
business perspectives, and practical experience into
educational process. They create critical knowledge and
innovative ideas that guide students to become leaders and
decision makers of tomorrow. Their superb teaching
methodology imparts students with depth of expertise and
breadth of wisdom, experience, and leadership. They are
highly responsive to our students and are always there to
help them out of any problem-whether academic or personal.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseThree" data-toggle="collapse">
<b> EFFECTIVE TEACHING METHODOLOGY</b>
</a>
</h5>
</div>
<div id="collapseThree" class="collapse">
<div class="card-body text-black-50">
Regional College is committed to the delivery of a
high-quality learning experience using a combination of
traditional methods and more innovative teaching approaches
to commerce & business studies, Lectures play a key role in
course delivery, setting out the main themes and issues
associated with course material. Through lectures, the
faculty members provide students with insight into the
theoretical and conceptual aspect of commerce subjects. The
faculty members also use case study-based methods with
modern audio visual aids to impart students with managerial
skils and knowledge.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseFour" data-toggle="collapse">
<b>REGULAR ASSESSMENT</b>
</a>
</h5>
</div>
<div id="collapseFour" class="collapse">
<div class="card-body text-black-50">
Continuous assessment of students' learning improves the
level of academic delivery and allows the faculty to
identify those areas of teaching, which require immediate
improvement. The faculty members regularly assess the
performance of students through collecting feedback on how
well their students are learning what they are being taught.
They also share feedback with students to help them improve
their learning strategies and study habits in order to
become more independent and successful learners. The purpose
of the assessment by the faculty members is continuous
monitoring of students learning and revisions, when
necessary and possible. Whatever the faculty members observe
in students during their assessment, they register the
observation, and make required modifications and implement
this quickly in their academic delivery.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseFive" data-toggle="collapse">
<b>STUDENT FRIENDLY ENVIRONMENT</b>
</a>
</h5>
</div>
<div id="collapseFive" class="collapse">
<div class="card-body text-black-50">
Students at Regional College are encouraged to be active
members in their own educational experience, instead of
being silent bystanders to what the system has in store for
them. This is made possible through teaching methodologies,
that prioritize learning through direct experience. Students
are free to question the lecturer (lecturers are viewed as
facilitators rather than the traditional teacher)
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseSix" data-toggle="collapse">
<b>NO-COACHING REQUIREMENT</b>
</a>
</h5>
</div>
<div id="collapseSix" class="collapse">
<div class="card-body text-black-50">
A degree education from Coaching/Tution are undoubtedly
heavy on students' time and money. We have taken an
initiative to create a study environment wherein the student
fulfills all his educational needs in the campus itself.
After the lectures are over, a special interactive session
with the lecturers has been planned where the student can
feel free to clear his doubts and get assistance in
completion of his assignments.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseSeven" data-toggle="collapse">
<b> CENTRALLY LOCATED</b>
</a>
</h5>
</div>
<div id="collapseSeven" class="collapse">
<div class="card-body text-black-50">
The college campus at Pilibhit by-pass road opposite to
Mahanagar Colony and near Phoenix Mall is just a few minutes
drive from any corner of the city and can be reached by
multiple modes of transport including college
transportation.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseEight" data-toggle="collapse">
<b>REGULAR SEMINARS & WORKSHOPS</b>
</a>
</h5>
</div>
<div id="collapseEight" class="collapse">
<div class="card-body text-black-50">
Regional College has a very clear policy of imparting
practical and career focused education apart from syllabus
teaching. Seminars, workshops, presentations and tutorials
provide the framework for more detailed exploration and
analysis, offering the opportunity for small groups of
students and a teacher to discuss and share ideas. The
faculty members also give emphasis on experiential learning
through involving students to apply theoretical knowledge to
a real-world business issue. Experimental learning gives
students a "nuts-and-bolts" training approach to finance and
I.T. sector.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseNine" data-toggle="collapse">
<b> RICH LIBRARY</b>
</a>
</h5>
</div>
<div id="collapseNine" class="collapse">
<div class="card-body text-black-50">
The Library serve as a backbone to all academic activities.
Our library houses a collection of text and reference
materials, journals, magazines, which have been carefully
selected from a number of professional institutions.
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="accordion">
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a
href="#collapseTen"
data-toggle="collapse"
data-target="#collapseTen"
>
<b> CLASSROOMS</b>
</a>
</h5>
</div>
<div id="collapseTen" class="collapse">
<div class="card-body text-black-50">
The amphitheater style classrooms provide the most conducive
atmosphere for dynamic & focused discussions. Interactive
learning is augmented by sophisticated audio-visual aids and
advanced presentation tools.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a
href="#collapseEleven"
data-toggle="collapse"
data-target="#collapseEleven"
>
<b> MODERN COMPUTER LAB</b>
</a>
</h5>
</div>
<div id="collapseEleven" class="collapse">
<div class="card-body text-black-50 text-black-50">
Regional College has state-of-art computer lab that provides
computing facilities comprising of the latest computer
machines linked to wide range of software, communication and
printing services.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseTwelve" data-toggle="collapse">
<b>TRANSPORT FACILITY</b>
</a>
</h5>
</div>
<div id="collapseTwelve" class="collapse">
<div class="card-body text-black-50">
Bus facility has been provided for the convenience of
students who wish to come by college bus.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseThirteen" data-toggle="collapse">
<b>PLACEMENT SUPPORT</b>
</a>
</h5>
</div>
<div id="collapseThirteen" class="collapse">
<div class="card-body text-black-50">
Regional College pays close attention to the placement for
the graduating batch. Every member of the faculty and staff
works closely with the industry to get our students the best
jobs that are in line with their skits. During previous
years, College placed 45 of its B.Com. students in indusind
Bank, 58 students in MNC Genpact and many more students in
blue chip companies even before their final graduation
results were out. This year too our students have come out
strongly in Placements in MNC companies while the process of
placements is still underway.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseFourteen" data-toggle="collapse">
<b>TOTAL PERSONALITY DEVELOPMENT</b>
</a>
</h5>
</div>
<div id="collapseFourteen" class="collapse">
<div class="card-body text-black-50">
Personality development classes are undertaken by experts
who would teach the students to relax, renew and increase
concentration for better productivity. Special workshops are
planned on handling interviews and group discussions by
experts which is of great help to the students for their
future.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseFifteen" data-toggle="collapse">
<b>SPORTS FACILITIES</b>
</a>
</h5>
</div>
<div id="collapseFifteen" class="collapse">
<div class="card-body text-black-50">
In tune with the objective of all round development of
students, various sporting and physical development
activities are encouraged amongst students. To enable
students to enjoy sports, the campus is equipped with a
running track, cricket field, volley ball, football,
basketball etc.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseSixteen" data-toggle="collapse">
<b>IN-CAMPUS CANTEEN</b>
</a>
</h5>
</div>
<div id="collapseSixteen" class="collapse">
<div class="card-body text-black-50">
A canteen is provided in the campus which provides fresh,
standard quality hygienic snacks to the students without the
trouble of leaving the campus.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<a href="#collapseSeventeen" data-toggle="collapse">
<b>PERIODIC REPORTS TO PARENTS</b>
</a>