-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1063 lines (889 loc) · 59.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
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">
<!-- 13:28 -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Home</title>
<!-- Css Files -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/flaticon.css" rel="stylesheet">
<link href="css/slick-slider.css" rel="stylesheet">
<link href="css/prettyphoto.css" rel="stylesheet">
<link href="build/mediaelementplayer.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="css/color.css" rel="stylesheet">
<link href="css/color-two.css" rel="stylesheet">
<link href="css/color-three.css" rel="stylesheet">
<link href="css/color-four.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link rel="stylesheet" href="my.css">
<style>
body{
background-color: skyblue;
}
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>-->
<script src="extra-script/bootstrap.min.js"></script>
<script src="extra-script/contact.js"></script>
<script src="extra-script/jquery-3.3.1.min.js"></script>
<script src="extra-script/jquery.validate.min.js"></script>
<script src="extra-script/popper.min.js"></script>
<script src="extra-script/theme.js"></script>
<![endif]-->
</head>
<body>
<DIV id="HEAD">
PN CADET COLLEGE ORMARA
</DIV>
<div id="divider"></div>
<!--// Main Wrapper \\-->
<div class="wm-main-wrapper">
<!--// Header \\-->
<header id="wm-header" class="wm-header-one">
<!--// MainHeader \\-->
<div class="wm-main-header">
<div class="container">
<div class="row">
<div class="col-md-3"><a href="index.html" class="wm-logo" id="logo-2"><img src="images/logo-22.png" alt=""></a></div>
<div class="col-md-9">
<!--// Navigation \\-->
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="true">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html"><DIV id="CU">HOME</DIV></a>
<li class="wm-megamenu-li"><a><DIV>ABOUT</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>ABOUT US</h4>
<ul class="wm-megalist">
<li><a href="principles.html"><DIV>PRINCIPLE'S WELCOME</DIV> </a></li>
<li><a href="a-loction.html">LOCATION</a></li>
<li><a href="ahistorical.html">HISTORICAL PROSPECTIVE</ a></li>
<li><a href="college leadership.html">COLLEGE LEADERSHIP</a></li>
<li><a href="whypn.html">WHY PN CCO</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>PN CADET COLLEGE ORMARA</h4>
<div class="wm-mega-text">
PN Cadet College Ormara, founded by the Pakistan Navy in 2013 and led by its first principal, Codr Fiyyaz (Sitara-e-Imtiaz (M)), is situated in the historic city of Ormara, Balochistan. Inaugurated in 2017, the college strives to bring education to this remote area, fostering equal opportunities and competitiveness for youth in both national and global contexts. Established on June 12, 2012, by former Prime Minister Yousaf Raza Gillani, it commenced academic activities in April 2013 with a vision to become a beacon of quality education for future generations of Balochistan.
</div>
</div>
<div class="col-md-5">
<h4>CADETS ON PRADE</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/nav/IMG_9794.JPG" alt="" />
</a>
</div>
</li>
</ul>
</li>
<li class="wm-megamenu-li"><a><DIV>Academics</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>Academics excellence</h4>
<ul class="wm-megalist">
<li><a href="AFFILIATION AND DISCIPLINES OFFERED.html">AFFILIATION AND DISCIPLINES OFFERED</a></li>
<li><a href="role.html">Academic excellence</a></li>
<li><a href="ICPDP.html">ICPDP</a></li>
<li><a href="NAVAL ORIENTATION CURRICULUM.html">NAVAL ORIENTATION CURRICULUM</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>PN CCO Academic PERFORMANCE</h4>
<div class="wm-mega-text">
<p>PN Cadet College Ormara, affiliated with the Federal Board of Intermediate & Secondary Education (FBISE) Islamabad, offers education from VIII to XII in disciplines such as Pre-Engineering, Pre-Medical, and ICS (Computer Science). Achieving a remarkable 90% overall percentage in its first federal board examinations, the college emphasizes character building, focusing on ethical values, communication skills, and a sense of patriotic commitment. A naval orientation curriculum prepares cadets for potential careers in the Pakistan Navy.</p>
</div>
</div>
<div class="col-md-5">
<h4>CADETS STUDDING IN CLASS ROOM</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/facilities/IMG_5565.JPG" alt="" />
</a>
</div>
</li>
</ul>
</li>
<li class="wm-megamenu-li"><a href="facitlities.html"><DIV>FACILITIES</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>FACILITIES FOR CADETS</h4>
<ul class="wm-megalist">
<li><a href="hostel.html">HOSTELS</a></li>
<li><a href="fsports.html">SPORTS FACILITIES</a></li>
<li><a href="library.html">LIBRARY</a></li>
<li><a href="mess.html">CADETS MESS</a></li>
</ul>
</div>
<div class="col-md-5">
<ul class="wm-megalist">
<br>
<br>
<li><a href="masjid.html">COLLEGE MASJID</a></li>
<li><a href="fhealth.html">HEALTH CARE</a></li>
<li><a href="flabs.html">SCIENCE LABS</a></li>
<li><a href="cafe.html">CAFETERIA</a></li>
<li><a href="faudi.html">AUDITORIUM</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>NEWLY BUILT CADETS HOSTEL</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/nav/IMG_4983.JPG" alt="" />
</a>
</div>
</li>
</ul>
</li>
<li class="wm-megamenu-li"><a href="#"><DIV>ROUTINE</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>CADETS' LIFE</h4>
<ul class="wm-megalist">
<li><a href="Campus LIFE.html">Campus LIFE</a></li>
<li><a href="DAILY ROUTINE.html">DAILY ROUTINE</a></li>
<li><a href="HOUSE System.html">HOUSE System</a></li>
<li><a href="CADETS LEADERSHIP.html">CADETS LEADERSHIP</a></li>
<li><a href="CLUBS.html">CLUBS</a></li>
<li><a href="FIELD TRIPS AND VISITS.html">FIELD TRIPS AND VISITS</a></li>
<li><a href="SPIRITUAL LIFE.html">SPIRITUAL LIFE</
a></li>
</ul>
</div>
<div class="col-md-5">
<h4>ABOUT CADETS</h4>
<div class="wm-mega-text">
<p>
Our cadets benefit from an interactive learning environment with well-equipped academic facilities, including libraries, computer labs, and modern science laboratories. Sports facilities such as basketball, hockey, and a swimming pool are available. The daily schedule includes prayers, classes, study periods, and extracurricular activities. Leadership development is fostered through college appointments, and clubs focus on fine arts, performing arts, and information technology. Regular visits to naval installations enhance cadets' understanding of the naval profession. Participation in competitions and events at both national and international levels enriches their educational experience</p>
</div>
</div>
<div class="col-md-5">
<h4>cadets on SPORTS</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/IMG_9987.JPG" alt="" />
</a>
</div>
</li>
</ul>
</li>
<li class="wm-megamenu-li"><a href="gallery.html"><DIV>GALLERY</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4> PICTURE GALLERY</h4>
<ul class="wm-megalist">
<li><a href="sports-galla.html">SPORTS GALLA</a></li>
<li><a href="PARENTS' DAY.html">PARENTS' DAY</a></li>
<li><a href="CULTURE DAY.html">CULTURE DAY</a></li>
<li><a href="ALL PAKISTAN TOUR.html">ALL PAKISTAN TOUR</a></li>
<li><a href="GUEST LECTURE.html">GUEST LECTURE</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>EVENTS DETAILS</h4>
<div class="wm-mega-text">
<p>
Our college hosts an annual array of events such as Parents' Day, commemorations for 23rd March and 14th August, Teachers' Day, Maritime Day, Earth Day, Social Night, Musical Night, Coffee Day, and Guest Lectures. Additionally, activities like Culture Night, Drill Competition, Creative Writing Competition, and Biligul Contest contribute to a vibrant cultural and educational environment.</p>
</div>
</div>
<div class="col-md-5">
<h4>PICTURE</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/coollage college.png" alt="" />
</a>
</div>
</li>
</ul>
</li>
<!-- <li class="wm-megamenu-li"><a href=""><DIV>CONTACT US</DIV></a>
</li> -->
<li class="wm-megamenu-li"><a href="#"><DIV>Students' Guide</DIV></a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>STUDENTS GUIDE</h4>
<ul class="wm-megalist">
<li><a href="Admission.html">Admission Policy & Schemes</a></li>
<li><a href="fee-structure.html">Fee Structure</a></li>
<li><a href="">Selection Procedure</a></li>
<li><a href="faq-page.html">frequently Asked Questions</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>Admission Policy</h4>
<div class="wm-mega-text">
<p>
Admission to the college, with 50% of seats reserved for N-Cadets from Balochistan, is merit-based. Paying Cadets and Self-Finance schemes cater to other provinces. The comprehensive fee structure includes admission fees, security deposit, and annual charges. Notably, N-Cadets receive free education as all expenses are covered by the Pakistan Navy, encouraging educational opportunities for the youth from Balochistan. The selection process involves written tests, interviews, and medical examinations, with the final selection based on overall merit, considering academic performance, intelligence tests, and the selection board interview.</p>
</div>
</div>
<div class="col-md-5">
<h4>Teacher Helping Cadets</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/nav/IMG_8561.JPG" alt="" />
</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<!--// Navigation \\-->
</div>
</div>
</div>
</div>
<!--// MainHeader \\-->
</header>
<!--// Header \\-->
<!--// Main Banner \\-->
<div class="wm-main-banner">
<div class="wm-banner-three">
<div class="wm-banner-three-layer">
<img src="extra-images/gallry/IMG_9032.JPG" alt="">
<div class="wm-caption-three">
<div class="container">
<div class="wm-caption-three-inner">
<h1>Binding Nation Through Education</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<!--// Main Banner \\-->
<!--// Main Banner \\-->
<div class="wm-main-banner">
<div class="wm-banner-one">
<div class="wm-banner-one-for">
<div class="wm-banner-one-for-layer"> <img src="extra-images/facilities/CCO5.png" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/facilities/CCO2.JPG" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/facilities/CCO4.png" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/facilities/CCO6.png" alt=""> </div>
</div>
<div class="wm-banner-one-nav">
<div class="wm-banner-one-nav-layer banner-bgcolor">
<h1>Our FACILITIES</h1>
<p>College provides many facilities to cadets such as library,masjid,hostels and sports ground etc <br><br></p>
<a href="facitlities.html" class="wm-banner-btn">learn more</a>
</div>
<div class="wm-banner-one-nav-layer">
<h1>Research in LABS</h1>
<p>Cadets can perform experiments according to thair needs.OIC labs and staff is ready to help out the cadets </p>
<a href="flabs.html" class="wm-banner-btn">learn more</a>
</div>
<div class="wm-banner-one-nav-layer">
<h1>CLUBS</h1>
<p>PN CCO is having different communities and CLUBS(like IT community,Dramatic community,Islamic Community etc) <br><br></p>
<a href="#" class="wm-banner-btn">know more</a>
</div>
<div class="wm-banner-one-nav-layer">
<h1>International Programmes</h1>
<p>The study programmes of the Enroll Campus University are open to people from all nationalities.</p>
<a href="#" class="wm-banner-btn">learn more</a>
</div>
</div>
</div>
</div>
<!--// Main Banner \\-->
<!--
Mission -->
<div class="wm-main-section wm-whychooseus-full">
<div class="container">
<div class="row">
<div id="values">
<h1 id="v1"> Our Mission</h1>
<p ><li id="m1"> To educate youth and instill highest traits of honor and character.</li></p>
<h1 id="v1">Our Objective</h1>
<p ><li id="m1"> Provide quality education to the youth of Pakistan in general and Balochistan in particular.</li></p>
<p ><li id="m1"> Groom the cadets in conducive environment to develop their intellectual, moral and physical capabilities.</li></p>
<p ><li id="m1"> Act as a feeder institution for Pakistan Navy/Armed forces in particular and other fields of life in general.</li></p>
<p ><li id="m1"> Providing employment opportunities for locals.</li></p>
</div></div>
</div>
</div>
</div>
<!--
Mission -->
<hr>
<!--// Main Section \\-->
<div class="wm-main-section wm-whychooseus-full">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="whychooseus-list">
<div class="wm-fancy-title"> <h2>Why <span>Choose Us</span></h2> </div>
<ul class="row">
<li class="col-md-4">
<span>13</span>
<h6>IN SERVICE NAVAL OFFICERS</h6>
</li>
<li class="col-md-4">
<span>12%</span>
<h6>CADETS JOINED PAKISTAN ARMED FORCES</h6>
</li>
<li class="col-md-4">
<span>15%</span>
<h6>GOT SCHOLARSHIPS ABROAD </h6>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="wm-questions-studying">
<img src= alt="">
<h3 class="wm-color">Questions about studying with us?</h3>
<p>We have a team of student advisers & officers to answer any questions:</p>
<a class="wm-banner-btn" href="#">ask us now</a>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-learn-listing-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-fancy-title"> <h2>You Can <span>Check Out</span></h2> </div>
<div class="wm-learn-listing">
<ul class="row">
<li class="col-md-6">
<figure><a href="cont"><img src="extra-images/cco1.JPG" alt=""></a>
<figcaption>
<h2>Contact Us</h2>
<a href="flabs.html" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/gallry/IMG_4553.JPG" alt=""></a>
<figcaption>
<h2>Facilities</h2>
<a href="facitlities.html" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="gallery.html"><img src="extra-images/CCO4.JPG" alt=""></a>
<figcaption>
<h2>Gallery</h2>
<a href="gallery.html" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/gallry/IMG_8788.JPG" alt=""></a>
<figcaption>
<h2>Students Guide</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
</ul>
</div>
<div class="wm-learn-listing">
<ul class="row">
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/facilities/CCO4.png" alt=""></a>
<figcaption>
<h2>Research</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/facilities/CCO6.png " alt=""></a>
<figcaption>
<h2>Academics</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/gallry/IMG_9127.JPG" alt=""></a>
<figcaption>
<h2>Admissions</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/gallry/IMG_8788.JPG" alt=""></a>
<figcaption>
<h2>Cadets Life</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-latestevents-full">
<div class="container">
<div class="row">
<div class="col-md-9 wm-top-spacer">
<h2 class="wm-simple-title">Our Latest Events</h2>
<div class="row">
<div class="col-md-4">
<div class="wm-event-latest-slider">
<div class="wm-event-latest-layer">
<h6 class="wm-color">Enjoy the best experience for you with the choice of our campus - a truly international university campus in Barcelona.</h6>
<a href="#" class="wm-banner-btn">about us</a>
</div>
<div class="wm-event-latest-layer">
<h6 class="wm-color">Enjoy the best experience for you with the choice of our campus - a truly international university campus in Barcelona.</h6>
<a href="#" class="wm-banner-btn">about us</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="wm-event wm-latest-event">
<ul class="row">
<li class="col-md-12">
<figure><a href="#"><img src="extra-images/latest-event-1.jpg" alt=""></a></figure>
<div class="wm-latest-event-text">
<h6><a href="#" class="wm-color">COFFEE DAY 2023 WITH CADETS A BEST MEMORY WITH CODR MASOOD UL HASSAN</a></h6>
<time datetime="2008-02-14 20:00">21/04/2016</time>
<p>Join us for outer-space themed games, prizes, science & talks about careers in the UK.</p>
<a href="#" class="wm-banner-btn">check event</a>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="wm-event wm-latest-event">
<ul class="row">
<li class="col-md-12">
<figure><a href="#"><img src="extra-images/latest-event-2.png" alt=""></a></figure>
<div class="wm-latest-event-text">
<h6><a href="#" class="wm-color">Shakespeare at Balliol in those five acts</a></h6>
<time datetime="2008-02-14 20:00">19/04/2016</time>
<p>A.C. Bradley and J.C. Maxwell get down to serious criticism; another Balliol writer launches the.</p>
<a href="#" class="wm-banner-btn">check event</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="wm-counter wm-counter-simple">
<ul class="row">
<li class="col-md-12">
<span class="word-count">50 </span>
<div class="PER"><P>%</P></div>
<h6> NAVAL CADETS (BELONG TO BALOCHISTAN)</h6>
</li>
<li class="col-md-12">
<span class="word-count">40</span>
<div class="PER"><P>%</P></div>
<h6>CADETS FROM ALL OVER THE PAKISTAN(PAYING CADETS)</h6>
</li>
<li class="col-md-12">
<span class="word-count">10</span>
<div class="PER"><P>%</P></div>
<h6>SELF FINANCE CADETS</h6>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-ourhistory-full">
<span class="wm-light-transparent"></span>
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="wm-history-list">
<h2>Our History</h2>
<ul>
<li>
<time datetime="2008-02-14 20:00">2011</time>
<span> On 30 DECEMBER 2011,To workout a plan for establishment of CCO, the meeting was Chaired by then CNS Admiral Asif Sandila NI(M).
</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2012</time>
<span>On 1<sup>st</sup> MARCH 2012 CCO Project was formally approved by CNS (Adm Asif Sandila NI(M)) and PC-1 was forwarded to GoP through MoD.
</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2012</time>
<span>On 23 MAY 2012, Govt sanctioned approved Rs. 531.568 M for establishment of JNAO and given the status of special project. The project is to be executed into four phases i.e 2011-15.
</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2012</time>
<span>On 27 JUNE 2012,Commodore Fayaz Malik TI(M) appointed as a first Principal of CCO.
</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2012</time>
<span>On 27 SEPTEMBER 2012 ,Vice Principal Cdr M Ashrif Ghauri along with 07 x uniformed faculty members and 41 x Admin staff joined the college.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2013</time>
<span>On 13 APRIL 2013 ,Pioneer Batch comprising 58 x cadets joined CCO and were accommodated in 04 x renovated barracks in Jinnah Naval Base. 25 N Cadets, 25 x P Cadets, 08 x Self Finance Cadets. To implement house system Jinnah and Iqbal houses were established.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>On 12 APRIL 2014,2<sup>nd</sup> Batch comprising 60 x cadets (25 x N, 25 x & 10 Self Finance cadets) joined the college </span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>On 12 JULY 2014,Captain Masood ul Hasan was taken over the duties of Principal of College.
</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>On 4 DECEMBER 2014, College was affiliated with FBISE. </span>
</li>
<li>
<time datetime="2008-02-14 20:00">2015</time>
<span>
On 12 FEBRUARY 2015,Mass PT Display and Science Exhibition was held for the first time. Then COMCOAST Rear Admiral Syed Bashir Ahmad HI(M) graced the occasion as a Chief Guest. The venue was BMCO.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>On 4 DECEMBER 2014, College was affiliated with FBISE. </span>
</li>
</ul>
</div>
</div>
<div class="col-md-7">
<div class="wm-subscribe-form">
<h2>Still not convinced? We can help you!</h2>
<p>Fill out the form below and we will contact you.</p>
<form>
<input type="text" value="Name:" onblur="if(this.value == '') { this.value ='Name:'; }" onfocus="if(this.value =='Name:') { this.value = ''; }">
<input type="email" value="E-mail:" onblur="if(this.value == '') { this.value ='E-mail:'; }" onfocus="if(this.value =='E-mail:') { this.value = ''; }">
<input type="submit" value="Get Advice">
</form>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-simple-section-title wm-partners-title"> <h2>College <span>Houses</span></h2> </div>
<div class="wm-partners-slider gallery">
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-6.png">
<img src="extra-images/university-partners-6.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/JOHAR.png">
<img src="extra-images/JOHAR.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-51.png">
<img src="extra-images/university-partners-51.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/TIPPU.png">
<img src="extra-images/TIPPU.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-5.png">
<img src="extra-images/university-partners-5.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/IQBAL.png">
<img src="extra-images/IQBAL.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-6.png">
<img src="extra-images/university-partners-6.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/JOHAR.png">
<img src="extra-images/JOHAR.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-51.png">
<img src="extra-images/university-partners-51.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/TIPPU.png">
<img src="extra-images/TIPPU.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-5.png">
<img src="extra-images/university-partners-5.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/IQBAL.png">
<img src="extra-images/IQBAL.png" alt=""> </a> </div>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-contact-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-contact-tab">
<!-- Nav tabs -->
<ul class="nav nav-tabs">
<li class="active"><a href="#home" aria-controls="home" data-toggle="tab">Contact Us</a></li>
<li><a href="#profile" aria-controls="profile" data-toggle="tab">Information Details</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="home">
<div class="row">
<div class="col-md-4">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14433.232442561733!2d64.59678541012015!3d25.26021875945837!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3eb7698c70f74a5d%3A0xeb74e3eb24d64a4c!2sCadet%20College%20Ormara!5e0!3m2!1sen!2s!4v1703425575865!5m2!1sen!2s" width="200" height="600" style="border:5;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="col-md-8">
<div class="wm-contact-form">
<span>Talk To Us Today</span>
<form>
<ul>
<li>
<i class="wmicon-black"></i>
<input type="text" value="Name" onblur="if(this.value == '') { this.value ='Name'; }" onfocus="if(this.value =='Name') { this.value = ''; }">
</li>
<li>
<i class="wmicon-symbol3"></i>
<input type="text" value="E-mail" onblur="if(this.value == '') { this.value ='E-mail'; }" onfocus="if(this.value =='E-mail') { this.value = ''; }">
</li>
<li>
<i class="wmicon-technology4"></i>
<input type="text" value="Phone" onblur="if(this.value == '') { this.value ='Phone'; }" onfocus="if(this.value =='Phone') { this.value = ''; }">
</li>
<li>
<i class="wmicon-web2"></i>
<textarea placeholder="Message"></textarea>
</li>
<li> <input type="submit" value="Send Message"> </li>
</ul>
</form>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="profile">
<span class="wm-contact-title">Contact Info</span>
<div class="wm-contact-service">
<ul class="row">
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-pin"></i></span>
<h5 class="wm-color">Address</h5>
<p>PN CADET COLLEGE ORMARA NEAR ORMARA ZERO POINT GWADAR MAKRAN COASTAL HIGHWAY ORMARA BALOCHISTAN</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-phone"></i></span>
<h5 class="wm-color">Phone & Fax</h5>
<ul>
<li>whatsapp : 03341353748 </li>
<li>duty house master: 021-32322951</li>
<li>Account office:021-3232951</li>
</ul>
<p>+1 505-753-5656 +1 505-753-4437</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-letter"></i></span>
<h5 class="wm-color">E-mail</h5>
<p><a href="mailto:[email protected]">[email protected]</a> <a href="mailto:[email protected]">[email protected]</a></p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
</div>
<!--// Main Content \\-->
<div class="tab-pane" id="profile">
<span class="wm-contact-title">Contact Info</span>
<div class="wm-contact-service">
<ul class="row">
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-pin"></i></span>
<h5 class="wm-color">Address</h5>
<p>PN CADET COLLEGE ORMARA NEAR ORMARA ZERO POINT GWADAR MAKRAN COASTAL HIGHWAY ORMARA BALOCHISTAN</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-phone"></i></span>
<h5 class="wm-color">Phone & Fax</h5>
<ul>
<li>whatsapp : 03341353748 </li>
<li>duty house master: 021-32322951</li>
<li>Account office:021-3232951</li>
</ul>
<p>+1 505-753-5656 +1 505-753-4437</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-letter"></i></span>
<h5 class="wm-color">E-mail</h5>
<p><a href="mailto:[email protected]">[email protected]</a> <a href="mailto:[email protected]">[email protected]</a></p>
</li>
</ul>
</div>
</div>
<!--// Footer \\-->
<footer id="wm-footer" class="wm-footer-one">
<div id="color">
<!-- // FooterNewsLatter \\ -->
<div class="wm-footer-newslatter" style="background-color: goldenrod;color: navy;margin-top: 10px;">
<div class="container">
<div class="row">
<div class="col-md-12">
<center> <b> <a href="#"><div>Back to Top</div> </a></b></center>
</div>
</div>
</div>
</div>
<div class="wm-footer-newslatter" style="background-color: goldenrod;color: navy;margin-top: 10px;">
<div class="container">
<div class="row">
<div class="col-md-12">
<center> <b> <a href="index.html"><div>Back to Home</div> </a></b></center>
</div>
</div>
</div>
</div>
<!--// FooterNewsLatter \\
<!--// FooterWidgets \\-->
<div class="wm-footer-widget">
<div class="container">
<div class="row">
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title" > <h5 id="color"> About Us</h5> </div>
<!-- <ul class="wm-megalist"> --> <ul>
<li><a href="principles.html" id="color">PRINCIPLE'S WELCOME</a></li>
<li><a href="a-loction.html" id="color">LOCATION</a></li>
<li><a href="ahistorical.html" id="color">HISTORICAL PROSPECTIVE</ a></li>
<li><a href="college leadership.html" id="color">COLLEGE LEADERSHIP</a></li>
<li><a href="whypn.html" id="color">WHY PN CCO</a></li>
</ul>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5 id="color">FACILITIES</h5> </div>
<ul>
<li ><a href="hostel.html" id="color">HOSTELS</a></li>
<li><a href="fsports.html" id="color">SPORTS FACILITIES</a></li>
<li><a href="library.html" id="color">LIBRARY</a></li>
<li><a href="mess.html" id="color">CADETS MESS</a></li>
<li><a href="masjid.html" id="color">COLLEGE MASJID</a></li>
<li><a href="fhealth.html" id="color">HEALTH CARE</a></li>
<li><a href="flabs.html" id="color">SCIENCE LABS</a></li>
<li><a href="cafe.html" id="color"> CAFETERIA</a></li>
<li><a href="faudi.html" id="color">AUDITORIUM</a></li>
</ul>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5 id="color">ACADEMICS</h5> </div>
<ul>
<li><a href="AFFILIATION AND DISCIPLINES OFFERED.html" id="color">AFFILIATION AND DISCIPLINES OFFERED</a></li>
<li><a href="role.html" id="color">Academic excellence</a></li>
<li><a href="ICPDP.html" id="color">ICPDP</a></li>
<li><a href="NAVAL ORIENTATION CURRICULUM.html" id="color">NAVAL ORIENTATION CURRICULUM</a></li>
</ul>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5 id="color">CADETS' LIFE</h5> </div>
<ul >
<li><a href="DAILY ROUTINE.html" id="color">DAILY ROUTINE</a></li>
<li><a href="HOUSE System.html" id="color">HOUSE System</a></li>
<li><a href="CADETS LEADERSHIP.html" id="color">CADETS LEADERSHIP</a></li>
<li><a href="CLUBS.html" id="color">CLUBS</a></li>
<li><a href="FIELD TRIPS AND VISITS.html" id="color">FIELD TRIPS AND VISITS</a></li>
<li><a href="SPIRITUAL LIFE.html" id="color">SPIRITUAL LIFE</
a></li>
</ul>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5 id="color">PICTURE GALLERY</h5> </div>
<ul>
<li><a href="sports-galla.html" id="color">SPORTS GALLA</a></li>
<li><a href="PARENTS' DAY.html" id="color">PARENTS' DAY</a></li>
<li><a href="CULTURE DAY.html" id="color">CULTURE DAY</a></li>
<li><a href="ALL PAKISTAN TOUR.html" id="color">ALL PAKISTAN TOUR</a></li>
<li><a href="GUEST LECTURE.html" id="color">GUEST LECTURE</a></li>
</ul>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5 id="color">STUDENTS GUIDE</h5> </div>
<ul>
<li><a href="Admission.html" id="color">Admission Policy</a></li>
<li><a href="fee-structure.html" id="color">Fee Structure</a></li>
<li><a href="Selection-procedure.html" id="color">Selection Procedure</a></li>
<li><a href="DOWNLOADS.HTML" id="color">Downloads</a></li>
<li><a href="contact us.html" id="color">Contact Us</a></li>
</ul>
</aside>
</div>
</div>
</div>
<!--// FooterWidgets \\