-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFAQ.html
1371 lines (1253 loc) · 83.7 KB
/
FAQ.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/faq-page.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!-- plugin facebook -->
<div id="fb-root"></div>
<script async defer crossorigin="anonymous"
src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v13.0&appId=361915922121875&autoLogAppEvents=1"
nonce="yjN4Wb23">
</script>
<!-- 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:[email protected]"
class="top-header__email-link top-header__item-link">
<i class="top-header__email-icon fa-solid fa-envelope"></i>
</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="#" 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="#" 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 enroll webiste fpt polytechnic phothong cao dang-->
<div class="faq-content-center">
<div class="faq-content__wrapper">
<h2 class="faq-content__heading">
Hỏi - Đáp
</h2>
<div class="faq-content__section">
<h3 class="faq-content__section-heading">
Tuyển sinh
</h3>
<ul class="faq-content__section-list">
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Phổ thông Cao đẳng FPT được thành lập khi nào?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Chương trình Phổ thông Cao đẳng tại Cao đẳng FPT Polytechnic được thành lập năm 2019,
trực thuộc Tổ chức Giáo dục FPT – Một trong những Tổ chức Giáo dục uy tín, danh giá, có
nhiều thành tựu, giải thưởng Quốc tế bậc nhất Việt Nam.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Điều kiện xét tuyển của Phổ thông Cao đẳng FPT là gì?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Để được xét tuyển đầu vào tại Phổ thông Cao đẳng thí sinh cần tốt nghiệp THCS, có tổng
điểm của 2 môn trong 4 môn văn hoá (toán, ngữ văn, vật lý, hoá học) của học kỳ gần nhất
tại thời điểm xét tuyển đạt từ 10 điểm trở lên.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Thủ tục nộp hồ sơ cần những giấy tờ gì?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Hồ sơ xét tuyển bao gồm: <br>
– 01 Phiếu đăng ký học có dán ảnh và có dấu xác nhận của công an địa phương hoặc trường
cấp 2 thí sinh đang theo học<br>
– 01 Bản sao công chứng giấy khai sinh hoặc 01 bản sao chứng minh thư nhân dân của thí
sinh<br>
– 01 Bản sao công chứng bằng tốt nghiệp THCS hoặc Giấy chứng nhận tốt nghiệp tạm thời.
(Chú ý: Thí sinh nộp giấy chứng nhận tốt nghiệp tạm thời phải bổ sung bản sao công chứng
Bằng tốt nghiệp THCS ngay sau khi nhận được).<br>
– 02 ảnh 4×6<br>
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Trường có mấy cơ sở?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Hiện tại Phổ thông Cao đẳng đang triển khai tại 10 cơ sở trên toàn quốc. Các cơ sở đào
tạo tọa lạc tại các thành phố lớn, trung tâm của Việt Nam như: Hà Nội, Đà Nẵng, HCM, Tây
Nguyên, Cần Thơ và Bình Định,…
</p>
<ul class="faq-content__section-item-title-desc-locations-list">
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
<li class="faq-content__section-item-title-desc-locations-item">
Cơ sở Hà Nội: Đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP. Hà Nội.
</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="faq-content__section">
<h3 class="faq-content__section-heading">
ĐÀO TẠO
</h3>
<ul class="faq-content__section-list">
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Học phí của trường là bao nhiêu ?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Tham khảo bảng học phí chi tiết tại Phổ thông Cao đẳng FPT <a href="">tại đây</a>
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Chi phí xe đưa đón là bao nhiêu?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Phổ thông Cao đẳng cung cấp dịch vụ xe đưa đón cho các bạn sinh viên trong trường, kinh
phí xe đưa đón từ 1tr7 đến 2tr3 /1 tháng.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Học thiết kế đồ họa sau khi ra trường sẽ làm những công việc gì?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Thiết kế Đồ họa, đây là ngành học rất thu hút sinh viên bởi tính năng động, sáng tạo,
thẩm mỹ. Tốt nghiệp ngành Thiết kế đồ họa sinh viên có rất nhiều các cơ hội nghề nghiệp
tại các vị trí như: chuyên viên thiết kế, tư vấn thiết kế tại các công ty quảng cáo,
công ty thiết kế, công ty truyền thông và tổ chức sự kiện, studio nghệ thuật, xưởng phim
hoạt hình và truyện tranh, các tòa soạn, các nhà xuất bản, cơ quan truyền hình, báo
chí,… Ngoài ra, sau khi tốt nghiệp, sinh viên có thể tự thành lập doanh nghiệp, các công
ty thiết kế, dịch vụ studio hoặc tư vấn, giảng dạy tại các trường học, trung tâm, CLB,…
Hơn nữa, như một đặc thù ưu ái, ngành Thiết kế đồ họa luôn mang lại những cơ hội làm
thêm hấp dẫn tại nhà như thiết kế website, thiết kế logo, nhận diện thương hiệu,…
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Môi trường học tập của các bạn sinh viên sẽ như thế nào?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Môi trường học tập tại FPT Polytechnic luôn tạo điều kiện để các bạn sinh viên được thể
hiện các năng khiếu, sở thích và đam mê của mình. Sinh viên theo học tại Chương trình
Phổ thông Cao đẳng được tham gia vào các hoạt động văn hóa, nghệ thuật sáng tạo, các
hoạt động ngoại khóa đa dạng giúp các em nâng cao được cả thể lực cũng như trí lực. Với
môi trường học tập thân thiện, cởi mở, được trang bị cơ sở vật chất hiện đại hứa hẹn đem
đến sự thoải mái tuyệt đối cho các bạn sinh viên khi đến trường. .
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Tại Phổ thông Cao đẳng FPT mỗi lớp sẽ có bao nhiêu sinh viên?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Tại Phổ thông Cao đẳng để đảm bảo chất lượng giảng và dạy học, số lượng sinh viên mỗi
lớp sẽ không quá 30 bạn.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Học Digital Marketing sau khi ra trường sẽ làm những công việc gì?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Digital Marketing là một trong những lĩnh vực cực kì quan trọng trong mọi công ty, mọi
ngành nghề vì vậy mà tiềm năng nghề nhiệp là không giới hạn. Sinh viên chuyên ngành
Digital Marketing sau khi tốt nghiệp sẽ có đủ năng lực đảm nhận các vị trí từ chuyên
viên cho đến quản lý tại các bộ phận, có khả năng cạnh tranh ở các vị trí: <br>
Chuyên viên tại các công ty hoạt động trong lĩnh vực Marketing;<br>
Chuyên viên nghiên cứu thị trường;<br>
Chuyên viên chăm sóc khách hàng, quan hệ công chúng;<br>
Chuyên viên phát triển và quản trị thương hiệu;<br>
Giảng dạy, nghiên cứu về Quản trị Marketing, Marketing…
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Học quản trị khách sạn sau khi ra trường sẽ làm những công việc gì?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Quản trị khách sạn là quản lý và tổ chức các hoạt động của khách sạn sao cho hiệu quả và
hợp lý nhất. Ngành này đặc biệt phù hợp với những bạn năng động, nhạy bén trong công
việc, có khả năng quan sát nắm bắt tâm lí khách hàng. Sinh viên tốt nghiệp ngành Quản
trị khách sạn sau khi ra trường có thể đảm nhiệm tốt các công việc như: Quản lý hoặc
chuyên viên các bộ phận lễ tân tiền sảnh, phòng, ẩm thực, bếp, hội nghị yến tiệc, nhân
sự, tài chính-kế toán, kinh doanh doanh- tiếp thị, hành chính, nhân lực, marketing… tại
các resort, khu nghỉ dưỡng, khu du lịch…; Cán bộ điều hành, tiếp thị, nhân sự, tài chính
tại các cơ quan nghiên cứu, kinh doanh du lịch trong và ngoài nước; Giảng dạy nghiên cứu
về nhà hàng khách sạn tại các trường đại học cao đẳng…
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Chương trình học tiếng anh của các bạn sẽ được đào tạo như thế nào?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Tại Phổ thông Cao đẳng các bạn sinh viên được theo học chương trình học Top Notch là
chương trình tiếng Anh do Nhà xuất bản Longman Pearson biên soạn dựa trên những nghiên
cứu và phân tích từ thực tế, nhằm đáp ứng nhu cầu học tiếng Anh ngày càng cao của người
dạy và người học Tiếng Anh. Chương trình này hiện đang được sử dụng bởi hơn 3 triệu học
viên trên toàn thế giới. Top Notch cũng là chương trình học tiếng Anh đã được nhiều giải
thưởng về chương trình Tiếng Anh tốt nhất.
Với năm 1 – năm 2 các bạn sẽ học giáo trình tiếng anh Top Notch Fundamentals,
năm 2 – năm 3 là Top Notch 1, năm cuối học Top Notch 2. Sau 3 năm học, trình độ tiếng
anh của các bạn sinh viên quy đổi là tương đương iels 4.5
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Có thể học chuyên ngành khác ngoài 3 chuyên ngành đào tạo của trường được không?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Hiện tại Phổ thông Cao đẳng đang chỉ triển khai duy nhất 4 chuyên ngành đào tạo là CNTT
– Ứng dụng phần mềm, Digital Marketing, Quản trị Khách sạn, và thiết kế đồ họa
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Trường có các câu lạc bộ cho học sinh tham gia không
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Để tạo môi trường cho sinh viên thực hành và ứng dụng các kỹ năng, kiến thức mình được
học, nhà trường thường xuyên tổ chức các hoạt động ngoại khoá, các cuộc thi, các CLB sở
thích, CLB thể thao, học thuật…cho các bạn sinh viên như CLB Tiếng Anh, CLB Dance, CLB
Cầu Lông, CLB Âm nhạc, CLB Bóng rổ, CLB Bóng đá, CLB Tình nguyện,…
</p>
</div>
</li>
</ul>
</div>
<div class="faq-content__section">
<h3 class="faq-content__section-heading">
TỐT NGHIỆP
</h3>
<ul class="faq-content__section-list">
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Sau khi tốt nghiệp ra trường sinh viên sẽ được cấp bằng gì? Bằng của trường là do ai cấp?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Sinh viên Phổ thông Cao đẳng sau 3 năm 8 tháng học ra trường sẽ được cấp bằng Cao đẳng
Chính quy do Cao đẳng FPT Polytechnic cấp dưới sự quản lý của Bộ Lao động Thương Binh &
Xã hội.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i
class="fa-solid fa-minus content-enroll__titles-item-icon-minus content-enroll__titles-item-icon display-none"></i>
Sinh viên tốt nghiệp Phổ thông Cao đẳng FPT có thể học liên thông lên các trường đại học
được hay không?
</div>
<div class="faq-content__section-item-title-desc display-none">
<p>
Sinh viên sau tốt nghiệp có thể học liên thông lên các trường Đại học. Tùy thuộc vào
trường Đại học sinh viên mong muốn theo học có ngành học liên thông tương đương với
ngành học theo học tại Phổ thông Cao đẳng hay không. Sau đó người học phải trải qua
kỳ thi liên thông của trường Đại học và xét duyệt các môn học còn thiếu để học bổ
sung.
</p>
</div>
</li>
<li class="faq-content__section-item">
<div class="faq-content__section-item-title-wrapper">
<i
class="fa-solid fa-plus content-enroll__titles-item-icon content-enroll__titles-item-icon-plus "></i>
<i