-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews-press.html
1369 lines (1246 loc) · 77.8 KB
/
news-press.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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phổ thông trung học FPT polytechnic</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/css/grid-library.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/page-side.css">
<link rel="stylesheet" href="assets/css/new-press.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!-- layout of the website -->
<div id="wrapper">
<div class="header">
<div class="top-header-wrap hide-on-mobile">
<div class="top-header-container">
<div class="top-header">
<div class="top-header__left-navbar">
</div>
<div class="top-header__right-navbar">
<ul class="top-header__right-list">
<li class="top-header__email top-header__item">
<a href="mailto:phothongcaodang@fpt.edu.vn"
class="top-header__email-link top-header__item-link">
<i class="top-header__email-icon fa-solid fa-envelope"></i>
phothongcaodang@fpt.edu.vn
</a>
</li>
<li class="top-header__phone top-header__item">
<a href="tel:09363400865" class="top-header__phone-link top-header__item-link">
<i class="top-header__phone-icon fa-solid fa-phone"></i>
09363400865
</a>
</li>
<li class="top-header__contact top-header__item">
<a href="fpt-contact.html" class="top-header__contact-link top-header__item-link">
liên hệ
</a>
</li>
<div class="top-header__search top-header__item ">
<i class="top-header__search-icon fa-solid fa-magnifying-glass"></i>
<input type="text" class="top-header__search-input display-none"
placeholder="Search..."></input>
<i class="fa-solid fa-xmark top-header__exit-icon"></i>
</div>
</ul>
</div>
</div>
</div>
</div>
<div class="bottom-header-wrap">
<div class="bottom-header-container hide-on-mobile-tablet">
<div class="bottom-header">
<a href="index.html" class="bottom-header__logo-fpoly">
<img src="assets/img/fpt-polytechnic-caodang-phothong-logo.png" alt=""
class="bottom-header__logo-img">
</a>
<div class="bottom-header__navbar">
<ul class="bottom-header__navbar-list hide-on-mobile">
<li class="bottom-header__navbar-item">
<a href="index.html" class="bottom-header__navbar-link">
TUYỂN SINH
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="notify-encroll.html" class="bottom-header__dropdown-link">
THÔNG BÁO TUYỂN SINH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
ĐĂNG KÝ TƯ VẤN TRỰC TUYẾN
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="enroll-regulation.html" class="bottom-header__dropdown-link">
QUY CHẾ TUYỂN SINH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HỌC PHÍ
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HƯỚNG DẪN NỘP HỒ SƠ
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
PHIẾU ĐĂNG KÝ HỌC
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TRẮC NGHIỆM NGHỀ NGHIỆP
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="FAQ.html" class="bottom-header__dropdown-link">
HỎI - ĐÁP
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
CHƯƠNG TRÌNH ĐÀO TẠO
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MEN -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
NGÀNH CÔNG NGHỆ THÔNG TIN
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="software-application.html"
class="bottom-header__dropdown-link">
ỨNG DỤNG PHẦN MỀM
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link ">
NGÀNH QUẢN TRỊ KINH DOANH
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DIGITAL MARKETING
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
QUẢN TRỊ KHÁCH SẠN
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
NGÀNH THIẾT KẾ ĐỒ HỌA
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
THIẾT KẾ ĐỒ HỌA
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
MÔI TRƯỜNG HỌC TẬP
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
CƠ SỞ ĐÀO TẠO
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HOẠT ĐỘNG SINH VIÊN
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HÀ NỘI
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
ĐÀ NẴNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TÂY NGUYÊN
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TPHCM
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
CẦN THƠ
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DANH CHO PHỤ HUYNH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DÀNH CHO HỌC SINH
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
TIN TỨC
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROP DOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="fpt-education.html" class="bottom-header__dropdown-link">
FPT EDUCATION
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN TƯC CHUNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN TUYỂN SINH LỚP 10
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN HỌC ĐƯỜNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HƯỚNG NGHIỆP
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
KIẾN THỨC CHUYÊN NGÀNH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="news-press.html" class="bottom-header__dropdown-link">
BÁO CHÍ NÓI VỀ PTCĐ FPT
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
CƠ HỘI NGHỀ NGHIỆP
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DOANH NGHIỆP TUYỂN DỤNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DOANH NGHIỆP HỢP TÁC
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
TUYỂN DỤNG
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- bottom - header - wrap on scroll javascript -->
<div class="bottom-header-wrap-second ">
<div class="bottom-header-container">
<div class="bottom-header">
<a href="#" class="bottom-header__logo-fpoly">
<img src="assets/img/fpt-polytechnic-caodang-phothong-logo.png" alt=""
class="bottom-header__logo-img">
</a>
<div class="bottom-header__navbar">
<ul class="bottom-header__navbar-list js-bottom-header__navbar-list hide-on-mobile-tablet">
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
TUYỂN SINH
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="notify-encroll.html" class="bottom-header__dropdown-link">
THÔNG BÁO TUYỂN SINH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
ĐĂNG KÝ TƯ VẤN TRỰC TUYẾN
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="enroll-regulation.html" class="bottom-header__dropdown-link">
QUY CHẾ TUYỂN SINH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HỌC PHÍ
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HƯỚNG DẪN NỘP HỒ SƠ
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
PHIẾU ĐĂNG KÝ HỌC
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TRẮC NGHIỆM NGHỀ NGHIỆP
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="FAQ.html" class="bottom-header__dropdown-link">
HỎI - ĐÁP
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
CHƯƠNG TRÌNH ĐÀO TẠO
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
NGÀNH CÔNG NGHỆ THÔNG TIN
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="software-application.html"
class="bottom-header__dropdown-link">
ỨNG DỤNG PHẦN MỀM
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link ">
NGÀNH QUẢN TRỊ KINH DOANH
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DIGITAL MARKETING
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
QUẢN TRỊ KHÁCH SẠN
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
NGÀNH THIẾT KẾ ĐỒ HỌA
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
THIẾT KẾ ĐỒ HỌA
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
MÔI TRƯỜNG HỌC TẬP
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
CƠ SỞ ĐÀO TẠO
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HOẠT ĐỘNG SINH VIÊN
<i class="fa-solid fa-chevron-right bottom-header__dropdown-icon"></i>
</a>
<ul class="bottom-header__dropdown-submenu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HÀ NỘI
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
ĐÀ NẴNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TÂY NGUYÊN
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TPHCM
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
CẦN THƠ
</a>
</li>
</ul>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DANH CHO PHỤ HUYNH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DÀNH CHO HỌC SINH
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
TIN TỨC
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROP DOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="fpt-education.html" class="bottom-header__dropdown-link">
FPT EDUCATION
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN TƯC CHUNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN TUYỂN SINH LỚP 10
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
TIN HỌC ĐƯỜNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
HƯỚNG NGHIỆP
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
KIẾN THỨC CHUYÊN NGÀNH
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="news-press.html" class="bottom-header__dropdown-link">
BÁO CHÍ NÓI VỀ PTCĐ FPT
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
CƠ HỘI NGHỀ NGHIỆP
<i class="fa-solid fa-angle-down bottom-header__navbar-item-icon"></i>
</a>
<!-- DROPDOWN MENU -->
<ul class="bottom-header__dropdown-menu">
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DOANH NGHIỆP TUYỂN DỤNG
</a>
</li>
<li class="bottom-header__dropdown-item">
<a href="#" class="bottom-header__dropdown-link">
DOANH NGHIỆP HỢP TÁC
</a>
</li>
</ul>
</li>
<li class="bottom-header__navbar-item">
<a href="#" class="bottom-header__navbar-link">
TUYỂN DỤNG
</a>
</li>
<div class="bottom-header__navbar-search-second hide-on-mobile-tablet">
<i
class="fa-solid fa-magnifying-glass bottom-header__navbar-search-second-icon"></i>
<input type="text" class="top-header__search-input-second "
placeholder="Search..."></input>
<!-- <i class="fa-solid fa-xmark bottom-header__navbar-exit-second-icon"></i> -->
</div>
</ul>
</div>
<!-- bottom header vertical menu -->
<div class="bottom-header__vertical-mobile-menu">
<i class="fa-solid fa-bars bottom-header__vertical-mobile-menu-icon"></i>
</div>
</div>
</div>
</div>
<!-- mobile header menu -->
<!-- <div class="header-mobile-menu-wrapper hide-on-pc"> -->
</div>
</div>
</div>
<!-- body of news press information of webiste fpt polytechnic phothong cao dang-->
<div class="content-enroll news-press">
<div class="news-press-header">
<h2 class="news-press-header__heading">
BÁO CHÍ NÓI VỀ PTCĐ FPT
</h2>
<div class="news-press-header__wrapper">
<div class="news-press-header__info">
<a href="" class="news-press-header__info-title">
Tuoitre.vn| Lợi thế khi chọn học cao đẳng từ tuổi 15
</a>
<p class="news-press-header__info-desc">
Chọn học giáo dục nghề nghiệp (GDNN) thay cho trường THPT là lựa chọn đi làm sớm. Để các em
không bị ‘chín ép’, đủ tự tin đi làm khi mới 19 tuổi cần sự chuẩn bị tốt ngay từ …
</p>
<a href="#" class="news-press-header__info-btn">
Xem Thêm
</a>
</div>
<a href="#" class="news-press-header__link-img">
<img src="assets/img/news-press/hoc-cao-dang-tu-tuoi-15.png" alt="" class="news-press-header__img">
</a>
</div>
</div>
<div class="content-enroll-wrapper news-press-container">
<!-- news-press-article - infomations-->
<div class="news-press__article-container">
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/giao-duc-thoi-dai-giai-ma-pho-thong-cao-dang-fpt-polytechnic.jfif"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
GIAODUCTHOIDAI.VN| Giải mã về Phổ thông Cao đẳng – FPT Polytechnic
</a>
<p class="news-press__article-desc">
GD&TĐ – Phổ thông Cao đẳng – FPT Polytechnic hiện đang là một sự lựa chọn cho học sinh
sau lớp 9. Đến nay, Phổ thông Cao đẳng – FPT Polytechnic đã có mặt tại 12 tỉnh thành.
Vậy,
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right news-press__article-link-target-icon"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/vn-express-net-phu-huynh-nen-giai-toa-cho-con-15-tuoi-ra-sao.png"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
VNEXPRESS.NET | Phụ huynh nên giải tỏa cho con 15 tuổi ra sao
</a>
<p class="news-press__article-desc">
Phụ huynh nên nắm bắt xu hướng thị trường lao động, thấu hiểu cảm xúc, hỗ trợ cân bằng
thời gian biểu… để định hướng và giải tỏa tâm lý cho con. Ngày 7/1, Phổ thông Cao đẳng
FPT
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/chung-ta-vn-hoan-nam-tien-co-hoi-cong-viec-voi-gen-z-gap-3000-lan-ong-ba-cha-me.png"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
CHUNGTA.VN | Anh Hoàng Nam Tiến: ‘Cơ hội công việc với Gen Z gấp 3.000 lần ông bà, cha
mẹ’
</a>
<p class="news-press__article-desc">
Chủ tịch FPT Telecom bật mí, ở FPT đang có rất nhiều bạn trẻ chỉ mới 18 – 19 tuổi nhưng
đã làm ở vị trí quản lý. Ngày 7/1, Phổ thông Cao đẳng FPT Polytechnic đã tổ chức hội …
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/hoi-thao-ve-giai-toa-noi-lo-cho-phu-huynh-va-hoc-sinh-lop-8.png"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
Hội thảo về giải tỏa nỗi lo cho phụ huynh và học sinh lớp 9
</a>
<p class="news-press__article-desc">
Phổ thông Cao đẳng – FPT Polytechnic cùng các trường THCS trên toàn quốc tổ chức hội
thảo ‘Hành trang tuổi 15’ nhằm giải tỏa nỗi lo cho phụ huynh và học sinh lớp 9. Chương
trình có sự
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/bao-bac-giang-pho-thong-cao-dang-them-su-lua-chon-cho-phu-huynh-hoc-sinh-thcs.png"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
BAOBACGIANG.COM.VN | Phổ thông Cao đẳng FPT – Thêm sự lựa chọn cho phụ huynh, học sinh
THCS Bắc Giang
</a>
<p class="news-press__article-desc">
(BGĐT) – Những năm gần đây, mô hình giáo dục đào tạo 9+ và đặc biệt là chương trình Phổ
thông Cao đẳng đang dần trở thành xu hướng mới, nhận được sự quan tâm lớn của xã hội.
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/viet-giai-tri-vn-truong-dau-tien-don-tan-sinh-vien-qua-hinh-thuc-talk-show-truc-tuyen.jfif"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
VIETGIAITRI.VN | Trường đầu tiên đón tân sinh viên qua hình thức talkshow trực tuyến
</a>
<p class="news-press__article-desc">
Trường Phổ thông Cao đẳng FPT Polytechnic vừa tổ chức Talkshow trực tuyến “Sẵn sàng trở
thành sinh viên đẳng cấp Quốc tế” trên nền tảng Zoom . Trong bối cảnh dịch
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/tien-phong-vn-pho-thong-cao-dang-fpt-to-chuc-chuong-trinh-truc-tuyen-chao-don-tan-sinh-vien.jfif"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
TIENPHONG.VN | Phổ thông cao đẳng FPT tổ chức chương trình trực tuyến chào đón tân sinh
viên
</a>
<p class="news-press__article-desc">
Ngày 20/8 , Phổ thông Cao đẳng FPT Polytechnic tổ chức Talkshow trực tuyến “Sẵn sàng trở
thành sinh viên đẳng cấp Quốc tế” trên nền tảng Zoom . Đây là hoạt động đặc biệt ý
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/bao-tin-tuc-vn-truong-dau-tien-don-tan-sinh-vien-qua-talk-show-truc-tuyen.jfif"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
BAOTINTUC.VN | Trường đầu tiên đón tân sinh viên qua hình thức talkshow trực tuyến
</a>
<p class="news-press__article-desc">
Trường Phổ thông Cao đẳng FPT Polytechnic vừa tổ chức Talkshow trực tuyến “Sẵn sàng trở
thành sinh viên đẳng cấp Quốc tế” trên nền tảng Zoom. Trong bối cảnh dịch bệnh diễn
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__article-section">
<div class="news-press__article-wrap">
<a href="" class="news-press__article-img-link">
<img src="assets/img/news-press/tien-phong-vn-pho-thong-cao-dang-fpt-to-chuc-chuong-trinh-truc-tuyen-chao-don-tan-sinh-vien.jfif"
alt="" class="news-press__article-img">
</a>
<div class="news-press__article-body">
<a href="#" class="news-press__article-title">
TIENPHONG.VN | Phổ thông cao đẳng FPT tổ chức chương trình trực tuyến chào đón tân sinh
viên
</a>
<p class="news-press__article-desc">
Ngày 20/8 , Phổ thông Cao đẳng FPT Polytechnic tổ chức Talkshow trực tuyến “Sẵn sàng trở
thành sinh viên đẳng cấp Quốc tế” trên nền tảng Zoom . Đây là hoạt động đặc biệt ý
</p>
<a href="" class="news-press__article-link-target">
Xem Thêm
<i class="fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="news-press__paganation-wrap">
<a href="" class="news-press__paganation-num-btn news-press__paganation-num-btn--current">
1
</a>
<a href="" class="news-press__paganation-num-btn">
2
</a>
<a href="" class="news-press__paganation-num-btn-not-active">
...
</a>
<a href="" class="news-press__paganation-num-btn">
5
</a>
<a href="" class="news-press__paganation-num-btn">
>
</a>
</div>
</div>
<div class="content-enroll__side-bar news-press__side-bar">
<ul class="content-enroll__side-bar-list">
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
THÔNG BÁO TUYỂN SINH
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<!-- <i class="fa-solid fa-people content-enroll__side-bar-link-icon"></i> -->
<i class="fa-solid fa-people-dress-simple content-enroll__side-bar-link-icon"></i>
<i class="fa-solid fa-people-pants"></i>
<i class="fa-solid fa-hand-wave"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
CHƯƠNG TRÌNH ĐÀO TẠO
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-paperclip-vertical content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="enroll-regulation.html" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
QUY CHẾ TUYỂN SINH
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-calendar-check content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
PHIẾU ĐĂNG KÝ HỌC
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-file-signature content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
HƯỚNG DẪN NHẬP HỌC
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-hand-point-right content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
HỌC PHÍ
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-key content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
<li class="content-enroll__side-bar-item">
<a href="#" class="content-enroll__side-bar-link">
<span class="content-enroll__side-bar-link-text">
CÂU HỎI THƯỜNG GẶP
</span>
<span class="content-enroll__side-bar-link-icon-wrap">
<i class="fa-solid fa-circle-question content-enroll__side-bar-link-icon"></i>
</span>
</a>
</li>
</ul>
<div class="content-enroll__side-bar-news">
<h2 class="content-enroll__side-bar-news-heading">Tin nổi bật</h2>
<div class="content-enroll__side-bar-news-wrapper">
<a href="#" class="content-enroll__side-bar-news-img-link">
<img src="assets/img/news-img-enroll/teacher.png" alt=""
class="content-enroll__side-bar-news-img">
</a>
<div class="content-enroll__side-bar-news-content">
<a href="#" class="content-enroll__side-bar-news-content-text">
Dạy học không chỉ là truyền đạt kiến thức mà còn giúp cho học sinh phát triển về nhân
cách, đạo đức
</a>
<p class="content-enroll__side-bar-news-content-date">
8 Tháng Tư, 2022
</p>
</div>
</div>
<div class="content-enroll__side-bar-news-wrapper">
<a href="#" class="content-enroll__side-bar-news-img-link">
<img src="assets/img/news-img-enroll/ambus-school.jpg" alt=""
class="content-enroll__side-bar-news-img">
</a>
<div class="content-enroll__side-bar-news-content">
<a href="#" class="content-enroll__side-bar-news-content-text">
Dạy học không chỉ là truyền đạt kiến thức mà còn giúp cho học sinh phát triển về nhân
cách, đạo đức
</a>
<p class="content-enroll__side-bar-news-content-date">
8 Tháng Tư, 2022
</p>
</div>
</div>
<div class="content-enroll__side-bar-news-wrapper">
<a href="#" class="content-enroll__side-bar-news-img-link">
<img src="assets/img/news-img-enroll/parents.png" alt=""
class="content-enroll__side-bar-news-img">
</a>