-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpt-education.html
976 lines (899 loc) · 55.9 KB
/
fpt-education.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
<!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/fpt-education.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>
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v13.0"
nonce="Eo6MqANp"></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: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="#" 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="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 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="fpt-education">
<div class="fpt-education__wrapper">
<h2 class="fpt-education__heading">
FPT Education
</h2>
<div class="fpt-education__img-wrapper">
<img src="assets/img/fpt-education/about-fpt-education-img.jpg" alt="fpt-education"
class="fpt-education__img">
<img src="assets/img/fpt-education/about-fpt-education-experience.jpg" alt="fpt-education-experience"
class="fpt-education__img">
</div>
<div class="fpt-education__plugin-comment">
<div class="fb-comments" data-href="https://phothongcaodang.fpt.edu.vn/fpt-education/" data-width="100%"
data-numposts="5"></div>
</div>
</div>
</div>
<div class="footer">
<div class="grid wide">
<div class="row">
<div class="col l-4">
<div class="footer__social-contact">
<img src="assets/img/fpt-polytechnic-caodang-phothong-logo.png" alt="footer-logo"
class="footer__logo">
<div class="footer__social-container">
<a href="#" class="footer__social-link"> <img
src="assets/img/social-icon/ico-fb-landing.png" alt=""
class="footer__social-image"></a>
<a href="#" class="footer__social-link"><img src="assets/img/social-icon/tik-tok-icon.webp"
alt="" class="footer__social-image"></a>
<a href="#" class="footer__social-link"><img
src="assets/img/social-icon/ico-wiki-landing.png" alt=""
class="footer__social-image"></a>
<a href="#" class="footer__social-link"> <img src="assets/img/social-icon/youtubue.png"
alt="" class="footer__social-image"></a>
</div>
</div>
<div class="footer__contact-info">
<h2 class="footer__contact-info-heading">THÔNG TIN LIÊN HỆ</h2>
<div class="footer__contact-head-quarter">
<h3 class="footer__contact-head-quarter-heading">
Trụ sở chính
</h3>
<p class="footer__contact-head-location">
<i class="fa-solid fa-location-dot footer__contact-head-location-icon"></i>
Tòa nhà FPT Polytechnic, đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP.
Hà Nội
</p>
<p class="footer__contact-head-phone">
0988 299 302
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hà Nội 2
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>Tổ 14, Phường Phúc Đồng, Quận Long Biên, TP. Hà Nội
</p>
<p class="footer__contact-branch-phone">
0988 299 302
</p>
</div>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hà Nội 2
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i>
Số 16 Lâm Hoằng, Phường Vỹ Dạ, TP. Huế
</p>
<p class="footer__contact-branch-phone">
0988 299 302
</p>
</div>
</div>
<div class="col l-4">
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hà Nội
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>Tòa nhà FPT Polytechnic, đường Trịnh Văn Bô, Phường Phương Canh, Quận Nam Từ Liêm, TP.
Hà Nội
</p>
<p class="footer__contact-branch-phone">
0988 299 302
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Đà Nẵng
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>Số 137 Nguyễn Thị Thập, Phường Hòa Minh, Quận Liên Chiểu, TP. Đà Nẵng
</p>
<p class="footer__contact-branch-phone">
(0236) 371 3777
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Cần Thơ
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>Toà nhà A2, đường Quang Trung, P. Hưng Phú. Q. Cái Răng, TP. Cần Thơ
</p>
<p class="footer__contact-branch-phone">
0974 680 024
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Bắc Giang
</h3>
<p class="footer__contact-branch-location"><i
class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i> Đường Lý Tự
Trọng, Phường Xương Giang, TP. Bắc Giang</p>
<p class="footer__contact-branch-phone">
0962 108 303
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hải Phòng
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>118A Cát Bi, Quận Hải An, TP. Hải Phòng
</p>
<p class="footer__contact-branch-phone">
0989 086 648
</p>
</div>
</div>
<div class="col l-4">
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Thái Nguyên
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i>
Tòa giảng đường A (Đại Học Nông Lâm). Tổ 10, xã Quyết Thắng, TP. Thái Nguyên
</p>
<p class="footer__contact-branch-phone">
0986 669 381
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hồ Chí Minh
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i>
Tòa nhà Innovation, lô 24, Công viên phần mềm Quang Trung, Quận 12, TP. Hồ Chí Minh
</p>
<p class="footer__contact-branch-phone">
096 992 5459
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Tây Nguyên
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i>Số 300/6, Hà Huy Tập, Tổ dân phố 8, Phường Tân An, TP. Buôn Mê Thuột, Đắk
Lắk
</p>
<p class="footer__contact-branch-phone">
(0262) 367 6789
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Đồng Nai
</h3>
<p class="footer__contact-branch-location"><i
class="fa-solid fa-location-dot footer__contact-branch-location-icon">
</i> Tổ 14, Phường Phúc Đồng, Quận Long Biên, TP. Hà Nội</p>
<p class="footer__contact-branch-phone">
0969 039 749
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hà Nội 2
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i>
Số 16 Lâm Hoằng, Phường Vỹ Dạ, TP. Huế
</p>
<p class="footer__contact-branch-phone">
0988 299 302
</p>
</div>
<div class="footer__contact-branch-office">
<h3 class="footer__contact-branch-branch-name">
Cơ sở Hà Nội 2
</h3>
<p class="footer__contact-branch-location">
<i class="fa-solid fa-location-dot footer__contact-branch-location-icon"></i>
Số 16 Lâm Hoằng, Phường Vỹ Dạ, TP. Huế
</p>
<p class="footer__contact-branch-phone">
0988 299 302
</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer__power-by">
<p class="footer__author-name">
Powered by <a href="" class="footer__author-link">Nhật Sang</a>
</p>
</div>
</div>
<div class="widget-layout">
<img src="https://public-gcs.subiz-cdn.com/dashboard-v4/public/img/bubble/bubble_lib_03.svg" alt=""
class="widget-layout__img-container">
<div class="widget-form">
<div class="widget-form__header">
<div class="widget-form__group-avatar">
<img src="assets/img/avatar-widget/logo-fpt-phothong-widget.jfif" alt=""
class="widget-form__avatar widget-form__avatar--left">
<img src="assets/img/avatar-widget/receptionist-woman.png" alt=""
class="widget-form__avatar widget-form__avatar--middle">
<img src="assets/img/avatar-widget/receptionist-woman.png" alt=""
class="widget-form__avatar widget-form__avatar--right">
</div>
<div class="widget-form__title-container">
<h3 class="widget-form__title--title">
PHỔ THÔNG CAO ĐẲNG FPT POLYTECHNIC
</h3>
<p class="widget-form__title--description">
Bạn có thắc mắc gì, hãy hỏi ngay nhé! Cán bộ trường sẽ tư vấn chi tiết cho bạn!
</p>
</div>
<div class="widget-form__exit-btn">
<i class="fa-solid fa-xmark widget-form__exit-btn-icon"></i>
</div>
</div>
<div class="widget-form__body-container">
<form class="widget-form__body-form">
<div class="widget-form__body-form-desc">
Hiện tại, chúng tôi không trực tuyến. Bạn vui lòng để lại tin nhắn, chúng tôi sẽ sớm liên hệ lại
với bạn.
</div>
<div class="widget-form__form-group">
<label for="" class="widget-form__label">Họ và tên <span>*</span></label>
<input type="text" name="" id="" class="widget-form__form-control " required>
</div>
<div class="widget-form__form-group">
<label for="" class="widget-form__label">Số điện thoại <span>*</span></label>
<input type="tel" name="" id="" class="widget-form__form-control " required>
</div>
<div class="widget-form__form-group">
<label for="" class="widget-form__label">Tin nhắn <span>*</span></label>
<textarea type="text" name="" id=""
class="widget-form__form-control widget-form__form-control--message" rows="4" required>
</textarea>
</div>
<div class="widget-form__footer">
<button class="widget-form__btn">
Để lại tin nhắn
</button>
</div>
</form>
</div>
<!-- <div class="widget-form__exit-btn">
<i class="fa-solid fa-check"></i>
</div> -->
<!-- <i class="fa-solid fa-check"></i> -->
</div>
</div>
<div class="bottom-register-fix">
<i class="fa-solid fa-xmark bottom-register-fix-exit-icon"></i>
<div class="bottom-register__container display-none">
<i class="fa-solid fa-xmark bottom-register-fix-exit-icon"></i>
<h2 class="bottom-register__heading">
ĐĂNG KÝ TƯ VẤN TRỰC TUYẾN
</h2>
<form action="" class="bottom-register__form">
<input type="text" class="bottom-register__form-control" placeholder="Họ và tên *" required>
<input type="tel" class="bottom-register__form-control" placeholder="Điện thoại *" required>
<select type="text" class="bottom-register__form-control" placeholder="" required>
<option value="" class="bottom-register__selection">Địa điểm học *</option>
<option value="" class="bottom-register__selection">Hà Nội</option>
<option value="" class="bottom-register__selection">Đà Nẵng</option>
<option value="" class="bottom-register__selection">Thái Nguyên</option>
<option value="" class="bottom-register__selection">Hồ Chí Minh</option>
<option value="" class="bottom-register__selection">Cần Thơ</option>
</select>
<div class="bottom-register__checkgroup">
<input type="checkbox" name="" id="" class="bottom-register__checkbox" required>
<label for="" class="bottom-register__checkbox-label">Xét tuyển</label>
</div>
<div class="bottom-register__checkgroup">
<input type="checkbox" name="" id="" class="bottom-register__checkbox" required>
<label for="" class="bottom-register__checkbox-label">Tư vấn</label>
</div>
<button class="bottom-register__btn">
Đăng ký
</button>
</form>
</div>
<div class="bottom-register__title">
<img src="assets/img/register-form/register-title-img.png" alt="" class="bottom-register__title-img">
</div>
</div>
<!-- scroll to top -->
<div class="scroll-top-section display-none" id="scrollTop">
<!-- <i class="fa-solid fa-chevron-up scroll-top-icon"></i> -->
</div>
<!-- show modal -->
<div class="modal" id="modalContainer">
</div>
<script src="assets/js/main.js"></script>
<script src="assets/js/faq.js"></script>
<script src="assets/js/common.js"></script>
</body>
</html>