-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
993 lines (957 loc) · 56.1 KB
/
index.html
File metadata and controls
993 lines (957 loc) · 56.1 KB
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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TAK12 - Nền Tảng Học Tập K-12 Toàn Diện | Toán, Tiếng Anh & Chứng Chỉ Quốc Tế</title>
<meta name="description" content="Nền tảng học tập K-12 toàn diện cho học sinh lớp 1-12. Toán học, Tiếng Anh, ôn thi vào trường và chứng chỉ quốc tế. Giảm 10% với mã DSMANHTUAN">
<!-- SEO Keywords and Additional Meta Tags -->
<meta name="keywords" content="học toán online, học tiếng anh online, K-12 vietnam, ôn thi vào lớp 10, cambridge ielts toefl, tak12, giáo dục trực tuyến, học trực tuyến việt nam">
<meta name="author" content="TAK12 Education">
<meta name="robots" content="index, follow">
<meta name="language" content="Vietnamese">
<meta name="geo.region" content="VN">
<meta name="geo.country" content="Vietnam">
<meta name="distribution" content="global">
<meta name="rating" content="general">
<meta name="revisit-after" content="7 days">
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:type" content="website">
<meta property="og:title" content="TAK12 - Nền Tảng Học Tập K-12 Toàn Diện | Toán, Tiếng Anh & Chứng Chỉ Quốc Tế">
<meta property="og:description" content="Nền tảng học tập K-12 toàn diện cho học sinh lớp 1-12. Toán học, Tiếng Anh, ôn thi vào trường và chứng chỉ quốc tế. Giảm 10% với mã DSMANHTUAN">
<meta property="og:url" content="https://tak12.com/?ref=njg2odn">
<meta property="og:site_name" content="TAK12 Education">
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/tuantmdev/tak12@main/images/feature_desktop.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:type" content="image/png">
<meta property="og:locale" content="vi_VN">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="TAK12 - Nền Tảng Học Tập K-12 Toàn Diện">
<meta name="twitter:description" content="Nền tảng học tập K-12 toàn diện cho học sinh lớp 1-12. Toán học, Tiếng Anh, ôn thi vào trường và chứng chỉ quốc tế.">
<meta name="twitter:image" content="https://cdn.jsdelivr.net/gh/tuantmdev/tak12@main/images/feature_desktop.png">
<meta name="twitter:site" content="@tak12education">
<meta name="twitter:creator" content="@tak12education">
<!-- Canonical URL -->
<link rel="canonical" href="https://tak12.com/?ref=njg2odn">
<!-- Preconnect for Performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://www.youtube.com">
<link rel="dns-prefetch" href="https://tak12.com">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<!-- Structured Data for SEO and LLM optimization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "TAK12 Education",
"description": "Nền tảng học tập K-12 toàn diện cho học sinh lớp 1-12. Toán học, Tiếng Anh, ôn thi vào trường và chứng chỉ quốc tế.",
"url": "https://tak12.com/?ref=njg2odn",
"logo": "https://tak12.com/logo.png",
"foundingDate": "2020",
"address": {
"@type": "PostalAddress",
"addressCountry": "VN",
"addressLocality": "Vietnam"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"url": "https://tak12.com/?ref=njg2odn"
},
"sameAs": [
"https://tak12.com/?ref=njg2odn"
],
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "TAK12 Course Catalog",
"itemListElement": [
{
"@type": "Course",
"name": "Toán học K-12",
"description": "Khóa học Toán từ lớp 2-12 theo chương trình Kết nối tri thức và Cánh diều",
"provider": {
"@type": "EducationalOrganization",
"name": "TAK12 Education"
},
"educationalLevel": "K-12",
"teaches": "Mathematics",
"offers": {
"@type": "Offer",
"category": "Educational Services",
"price": "621000",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"url": "https://tak12.com/?ref=njg2odn"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseSchedule": {
"@type": "Schedule",
"duration": "P1Y"
}
}
},
{
"@type": "Course",
"name": "Tiếng Anh K-12",
"description": "Khóa học Tiếng Anh từ cơ bản đến nâng cao, tích hợp sách giáo khoa",
"provider": {
"@type": "EducationalOrganization",
"name": "TAK12 Education"
},
"educationalLevel": "K-12",
"teaches": "English Language",
"offers": {
"@type": "Offer",
"category": "Educational Services",
"price": "621000",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"url": "https://tak12.com/?ref=njg2odn"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseSchedule": {
"@type": "Schedule",
"duration": "P1Y"
}
}
},
{
"@type": "Course",
"name": "Chứng chỉ quốc tế",
"description": "Cambridge (Starters, Movers, Flyers, KET, PET, FCE), TOEFL, IELTS",
"provider": {
"@type": "EducationalOrganization",
"name": "TAK12 Education"
},
"educationalCredentialAwarded": "International Certificate",
"offers": {
"@type": "Offer",
"category": "Educational Services",
"price": "1314000",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"url": "https://tak12.com/?ref=njg2odn"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseSchedule": {
"@type": "Schedule",
"duration": "P3Y"
}
}
},
{
"@type": "Course",
"name": "Ôn thi vào trường",
"description": "Ôn thi vào lớp 6, lớp 10, tốt nghiệp THPT",
"provider": {
"@type": "EducationalOrganization",
"name": "TAK12 Education"
},
"educationalLevel": "Secondary Education",
"offers": {
"@type": "Offer",
"category": "Educational Services",
"price": "972000",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"url": "https://tak12.com/?ref=njg2odn"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseSchedule": {
"@type": "Schedule",
"duration": "P1Y"
}
}
}
]
},
"offers": {
"@type": "Offer",
"category": "Educational Services",
"priceSpecification": {
"@type": "PriceSpecification",
"priceCurrency": "VND",
"price": "621000-2502000"
},
"availabilityStarts": "2025-01-01",
"validThrough": "2025-12-31"
}
}
</script>
<!-- FAQ Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "TAK12 có phù hợp với tất cả độ tuổi không?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Có, TAK12 được thiết kế cho học sinh từ lớp 1 đến lớp 12. Chúng tôi có các chương trình Toán học theo sách giáo khoa và Tiếng Anh từ cơ bản đến nâng cao cho từng độ tuổi, từ tiểu học đến THPT."
}
},
{
"@type": "Question",
"name": "TAK12 có chỉ dạy Tiếng Anh hay còn các môn khác?",
"acceptedAnswer": {
"@type": "Answer",
"text": "TAK12 không chỉ dạy Tiếng Anh mà còn có đầy đủ khóa học Toán học cho lớp 2-12. Ngoài ra còn có các khóa ôn thi vào lớp 6, lớp 10, tốt nghiệp THPT và các chứng chỉ quốc tế như Cambridge, TOEFL, IELTS."
}
},
{
"@type": "Question",
"name": "Mã giảm giá DSMANHTUAN có áp dụng cho tất cả khóa học không?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Có, mã DSMANHTUAN giảm 10% áp dụng cho tất cả khóa học tại TAK12. Chỉ cần nhập mã này khi thanh toán để nhận được ưu đãi ngay lập tức."
}
}
]
}
</script>
<!-- PostHog Analytics -->
<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.crossOrigin="anonymous",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init Re Ms Fs Pe Rs Cs capture Ve calculateEventProperties Ds register register_once register_for_session unregister unregister_for_session zs getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSurveysLoaded onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey canRenderSurveyAsync identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty Ls As createPersonProfile Ns Is Us opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing is_capturing clear_opt_in_out_capturing Os debug I js getPageViewId captureTraceFeedback captureTraceMetric".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('phc_SnYq4RM7epWBFwntZw8c9MEcMl8niwNmCpWP70KyRsr', {
api_host: 'https://us.i.posthog.com',
defaults: '2025-05-24',
person_profiles: 'identified_only', // or 'always' to create profiles for anonymous users as well
})
</script>
</head>
<body>
<!-- Hero Section -->
<header class="hero">
<nav class="nav">
<div class="nav-container">
<div class="logo">
<span class="logo-text">TAK12 Education</span>
</div>
<div class="nav-links" role="menubar">
<a href="#courses" class="nav-link" role="menuitem" aria-label="Xem các khóa học">Khóa Học</a>
<a href="#benefits" class="nav-link" role="menuitem" aria-label="Tìm hiểu lợi ích">Lợi Ích</a>
<a href="#pricing" class="nav-link" role="menuitem" aria-label="Xem bảng giá">Giá Cả</a>
<a href="#faq" class="nav-link" role="menuitem" aria-label="Câu hỏi thường gặp">FAQ</a>
<a href="https://tak12.com/?ref=njg2odn" class="cta-button" target="_blank" rel="noopener" aria-label="Bắt đầu học tại TAK12">Bắt Đầu Học</a>
</div>
</div>
</nav>
<div class="hero-content">
<div class="hero-text">
<h1 class="hero-title">
Tặng Con <span class="highlight">Nền Tảng Học Tập</span> Vững Chắc
</h1>
<p class="hero-subtitle">
Nền tảng học tập K-12 toàn diện cho học sinh lớp 1-12. Từ <strong>Toán học cơ bản</strong>, <strong>Tiếng Anh giao tiếp</strong> đến các <a href="#courses" class="inline-link">chứng chỉ quốc tế</a> và <a href="#courses" class="inline-link">ôn thi cuối cấp</a>.
</p>
<div class="promo-box">
<div class="promo-icon">🎉</div>
<div class="promo-text">
<p class="promo-line1"><strong>Ưu Đãi Đặc Biệt:</strong> Sử dụng mã</p>
<p class="promo-code-line"><span class="promo-code">DSMANHTUAN</span></p>
<p class="promo-line2">để giảm 10% tất cả khóa học</p>
<p class="promo-disclaimer">*Giá khóa học có thể thay đổi theo thời gian, nhưng mã giảm giá luôn giảm 10% trên giá hiện tại</p>
</div>
</div>
<div class="hero-buttons">
<a href="https://tak12.com/?ref=njg2odn" class="primary-button" target="_blank" rel="noopener" aria-label="Học thử miễn phí tại TAK12">
Học Thử Miễn Phí
</a>
<a href="#courses" class="secondary-button" aria-label="Xem danh sách khóa học">
Xem Khóa Học
</a>
</div>
</div>
<div class="hero-image">
<div class="student-illustration">
<div class="student-card">
<div class="student-avatar"></div>
<div class="progress-bars">
<div class="progress-bar">
<div class="progress-fill" style="width: 85%"></div>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 92%"></div>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 78%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Video Introduction Section -->
<section class="video-intro" aria-labelledby="video-section-heading">
<div class="container">
<div class="section-header">
<h2 id="video-section-heading">Khám Phá TAK12 Trong 5 Phút</h2>
<p>Xem video giới thiệu để hiểu rõ hơn về nền tảng học tập K-12 toàn diện cho con em bạn</p>
</div>
<div class="video-container">
<div class="video-wrapper">
<iframe
src="https://www.youtube.com/embed/1D4Fx3aaF6w"
title="TAK12 - Giới thiệu nền tảng học tập K-12 toàn diện"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
loading="lazy"
aria-describedby="video-description">
</iframe>
</div>
<div class="video-description" id="video-description">
<div class="play-stats">
<span class="video-tag">🎥 Video Giới Thiệu</span>
<span class="video-duration">5 phút</span>
</div>
<h3>Tại Sao Chọn TAK12?</h3>
<p>Xem cách TAK12 giúp hàng trăm nghìn học sinh Việt Nam cải thiện kết quả học tập Toán và Tiếng Anh, đạt được thành tích xuất sắc trong các kỳ thi vào trường và chứng chỉ quốc tế.</p>
<div class="video-features">
<div class="feature-item">
<span class="feature-icon">✅</span>
<span>Chương trình K-12 đa môn học</span>
</div>
<div class="feature-item">
<span class="feature-icon">✅</span>
<span>Phương pháp giảng dạy hiện đại</span>
</div>
<div class="feature-item">
<span class="feature-icon">✅</span>
<span>Kết quả học tập rõ ràng đa dạng</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="benefits" class="benefits" aria-labelledby="benefits-heading">
<div class="container">
<div class="section-header">
<h2 id="benefits-heading">Tại Sao Phụ Huynh Chọn TAK12 Cho Con Em</h2>
<p>Được hàng nghìn gia đình Việt Nam tin tưởng cho việc giáo dục toàn diện từ lớp 1 đến lớp 12</p>
</div>
<div class="benefits-grid">
<div class="benefit-card">
<div class="benefit-icon">📚</div>
<h3>Chương Trình Toàn Diện K-12</h3>
<p>Từ Toán học cơ bản, Tiếng Anh giao tiếp đến chứng chỉ Cambridge, TOEFL, IELTS - bao phủ mọi nhu cầu học tập</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">🎯</div>
<h3>Học Theo Từng Lớp</h3>
<p>Nội dung Toán và Tiếng Anh được thiết kế riêng cho từng lớp 1-12, đảm bảo tiến trình học phù hợp với độ tuổi</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">🏆</div>
<h3>Xuất Sắc Trong Thi Cử</h3>
<p>Thành tích đã được chứng minh trong thi vào lớp 6, lớp 10, tốt nghiệp THPT và các chứng chỉ quốc tế</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">💻</div>
<h3>Học Trực Tuyến Linh Hoạt</h3>
<p>Học mọi lúc, mọi nơi với nền tảng trực tuyến tương tác, phù hợp cho cả Toán và Tiếng Anh</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">📖</div>
<h3>Tích Hợp Sách Giáo Khoa</h3>
<p>Hỗ trợ sách Toán "Kết nối tri thức", "Cánh diều" và sách Tiếng Anh Global Success, i-Learn Smart, Oxford Discover</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">📊</div>
<h3>Theo Dõi Tiến Trình</h3>
<p>Giám sát hành trình học tập đa môn của con với báo cáo tiến độ chi tiết cho từng môn học</p>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses" class="courses">
<div class="container">
<div class="section-header">
<h2>Các Khóa Học Tại TAK12</h2>
<p>Lựa chọn gói học phù hợp cho con từ Toán K-12, Tiếng Anh cơ bản đến ôn thi vào trường và chứng chỉ quốc tế</p>
</div>
<div class="courses-grid">
<div class="course-card elementary">
<div class="course-badge">Phổ Biến Nhất</div>
<h3>TRỌN BỘ 3 NĂM - Chứng Chỉ Tiếng Anh</h3>
<ul class="course-features">
<li>Cambridge (Starters, Movers, Flyers, KET, PET, FCE)</li>
<li>ETS (TOEFL Primary, TOEFL Junior)</li>
<li>IELTS (Foundation, Test Prep)</li>
<li>Truy cập 3 năm</li>
<li>Phù hợp cho mọi độ tuổi</li>
</ul>
<div class="course-price">
<span class="original-price">1.460.000 VNĐ</span>
<span class="discounted-price">1.314.000 VNĐ</span>
<span class="discount-note">với mã DSMANHTUAN</span>
</div>
<a href="https://tak12.com/license/ex/10/426?ref=njg2odn" class="course-cta-button" target="_blank" rel="noopener" aria-label="Mua khóa học Chứng Chỉ Tiếng Anh">
Xem thêm
</a>
</div>
<div class="course-card middle">
<div class="course-badge">Ôn Thi Vào Lớp 6</div>
<h3>TRỌN BỘ CHO HỌC SINH LỚP 5</h3>
<ul class="course-features">
<li>Tổng ôn Toán, Tiếng Việt, Tiếng Anh vào lớp 6</li>
<li>Ôn luyện Ngữ pháp - Đọc hiểu level A2</li>
<li>Dành cho học sinh lớp 5</li>
<li>Luyện đề 3 môn các trường THCS tại Hà Nội</li>
<li>Sổ từ vựng azVocab.ai</li>
</ul>
<div class="course-price">
<span class="original-price">2.780.000 VNĐ</span>
<span class="discounted-price">2.502.000 VNĐ</span>
<span class="discount-note">với mã DSMANHTUAN</span>
</div>
<a href="https://tak12.com/license/ex/60/497?ref=njg2odn" class="course-cta-button" target="_blank" rel="noopener" aria-label="Mua khóa học Combo Anh Toán lớp 10">
Xem thêm
</a>
</div>
<div class="course-card comprehensive">
<div class="course-badge">Ôn Thi Vào Lớp 10</div>
<h3>COMBO ANH + TOÁN - Sở Hà Nội</h3>
<ul class="course-features">
<li>Học ôn, luyện đề môn Anh & Toán</li>
<li>Theo mẫu Sở Hà Nội qua các năm</li>
<li>Dành cho học sinh lớp 9</li>
<li>Luyện đề và kỹ thuật làm bài</li>
<li>Chính xác nhất cho thí sinh Hà Nội</li>
</ul>
<div class="course-price">
<span class="original-price">1.080.000 VNĐ</span>
<span class="discounted-price">972.000 VNĐ</span>
<span class="discount-note">với mã DSMANHTUAN</span>
</div>
<a href="https://tak12.com/license/ex/9/345?ref=njg2odn" class="course-cta-button" target="_blank" rel="noopener" aria-label="Mua khóa học Combo Anh Toán lớp 10">
Xem thêm
</a>
</div>
</div>
</div>
</section>
<!-- Course Catalog Button Section -->
<section id="pricing" class="course-catalog-section">
<div class="container">
<div class="catalog-cta">
<h2>Khám Phá Tất Cả Khóa Học TAK12</h2>
<p>Hơn 20+ khóa học từ Toán K-12, Tiếng Anh cơ bản, chứng chỉ quốc tế đến ôn thi vào trường - tất cả với giá ưu đãi 10%</p>
<button class="view-catalog-btn" onclick="toggleCourseCatalog()">
<span class="btn-text">Xem Danh Mục Khóa Học</span>
<span class="btn-icon">📚</span>
</button>
</div>
</div>
</section>
<!-- Hidden Course Catalog Modal -->
<div id="courseCatalogModal" class="catalog-modal">
<div class="catalog-modal-content">
<div class="catalog-header">
<h2>Danh Mục Khóa Học TAK12</h2>
<button class="close-catalog" onclick="toggleCourseCatalog()">×</button>
</div>
<div class="catalog-tabs">
<button class="tab-btn active" onclick="showCategory('certificates')">Chứng Chỉ Quốc Tế</button>
<button class="tab-btn" onclick="showCategory('skills')">Kỹ Năng Tiếng Anh</button>
<button class="tab-btn" onclick="showCategory('exams')">Ôn Thi Vào Trường</button>
<button class="tab-btn" onclick="showCategory('university')">Ôn Thi Đại Học</button>
<button class="tab-btn" onclick="showCategory('support')">Hỗ Trợ Học Tập</button>
</div>
<div class="catalog-content">
<!-- Certificates Tab -->
<div id="certificates" class="tab-content active">
<div class="course-grid">
<div class="course-item featured">
<div class="course-badge">Phổ Biến</div>
<h4>TRỌN BỘ 3 NĂM - Chứng Chỉ Tiếng Anh</h4>
<p>Cambridge, ETS, IELTS</p>
<ul class="course-features-mini">
<li>Cambridge (Starters, Movers, Flyers, KET, PET, FCE)</li>
<li>ETS (TOEFL Primary, TOEFL Junior)</li>
<li>IELTS (Foundation, Test Prep)</li>
<li>Truy cập 3 năm</li>
<li>Phù hợp cho mọi độ tuổi</li>
</ul>
<div class="price-display">
<span class="original">1.460.000đ</span>
<span class="discounted">1.314.000đ</span>
</div>
<a href="https://tak12.com/license/ex/10/426?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>TRỌN BỘ 1 NĂM</h4>
<p>Cambridge, ETS, IELTS</p>
<ul class="course-features-mini">
<li>Cambridge (Starters, Movers, Flyers, KET, PET, FCE)</li>
<li>ETS (TOEFL Primary, TOEFL Junior)</li>
<li>IELTS (Foundation, Test Prep)</li>
<li>Truy cập 1 năm</li>
</ul>
<div class="price-display">
<span class="original">690.000đ</span>
<span class="discounted">621.000đ</span>
</div>
<a href="https://tak12.com/license/ex/10/358?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>TRỌN BỘ 5 NĂM</h4>
<p>Cambridge, ETS, IELTS</p>
<ul class="course-features-mini">
<li>Cambridge (Starters, Movers, Flyers, KET, PET, FCE)</li>
<li>ETS (TOEFL Primary, TOEFL Junior)</li>
<li>IELTS (Foundation, Test Prep)</li>
<li>Truy cập 5 năm</li>
<li>Phù hợp cho mọi độ tuổi</li>
</ul>
<div class="price-display">
<span class="original">1.750.000đ</span>
<span class="discounted">1.575.000đ</span>
</div>
<a href="https://tak12.com/license/ex/10/230?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
</div>
</div>
<!-- Skills Tab -->
<div id="skills" class="tab-content">
<div class="course-grid">
<div class="course-item">
<h4>ĐỌC HIỂU + TỪ VỰNG A2-B1</h4>
<p>1 năm</p>
<ul class="course-features-mini">
<li>A2 Grammar - Cơ bản vững chắc</li>
<li>A2-B1 Intensive Reading</li>
<li>Sổ từ vựng azVocab.ai</li>
</ul>
<div class="price-display">
<span class="original">770.000đ</span>
<span class="discounted">693.000đ</span>
</div>
<a href="https://tak12.com/license/ex/116/412?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item featured">
<div class="course-badge">Tốt Nhất</div>
<h4>ĐỌC HIỂU + TỪ VỰNG A2-B1-B2</h4>
<p>2 năm</p>
<ul class="course-features-mini">
<li>A2-B1 Intensive Reading</li>
<li>B1-B2 Intensive Reading</li>
<li>Sổ từ vựng azVocab.ai</li>
</ul>
<div class="price-display">
<span class="original">780.000đ</span>
<span class="discounted">702.000đ</span>
</div>
<a href="https://tak12.com/license/ex/156/578?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>NGỮ PHÁP A2-B1-B2</h4>
<p>3 năm</p>
<ul class="course-features-mini">
<li>A2 Grammar - Cơ bản vững chắc</li>
<li>B1 Grammar - Trung cấp nâng cao</li>
<li>B2 Grammar - Nâng cao chuyên sâu</li>
<li>Truy cập 3 năm</li>
<li>Phù hợp cho học sinh THCS-THPT</li>
</ul>
<div class="price-display">
<span class="original">900.000đ</span>
<span class="discounted">810.000đ</span>
</div>
<a href="https://tak12.com/license/ex/116/309?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>NGỮ PHÁP + ĐỌC HIỂU + TỪ VỰNG</h4>
<p>3 năm</p>
<ul class="course-features-mini">
<li>Combo toàn diện A2-B1-B2</li>
<li>Grammar + Reading + Vocabulary</li>
<li>Sổ từ vựng azVocab.ai</li>
<li>Truy cập 3 năm</li>
</ul>
<div class="price-display">
<span class="original">1.440.000đ</span>
<span class="discounted">1.296.000đ</span>
</div>
<a href="https://tak12.com/license/ex/116/416?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
</div>
</div>
<!-- Exams Tab -->
<div id="exams" class="tab-content">
<div class="course-grid">
<div class="course-item featured">
<div class="course-badge">Tốt Nhất</div>
<div class="course-badge location-hanoi">Hà Nội</div>
<h4>COMBO ANH + TOÁN - Sở Hà Nội</h4>
<p>Ôn thi vào lớp 10</p>
<ul class="course-features-mini">
<li>Học ôn, luyện đề môn Anh & Toán</li>
<li>Theo mẫu Sở Hà Nội qua các năm</li>
<li>Chính xác nhất cho thí sinh Hà Nội</li>
</ul>
<div class="price-display">
<span class="original">1.080.000đ</span>
<span class="discounted">972.000đ</span>
</div>
<a href="https://tak12.com/license/ex/9/345?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>COMBO ANH + TOÁN - Sở TPHCM</h4>
<p>Ôn thi vào lớp 10</p>
<ul class="course-features-mini">
<li>Học ôn, luyện đề môn Anh & Toán</li>
<li>Theo mẫu Sở TPHCM qua các năm</li>
<li>Dành cho học sinh lớp 9</li>
</ul>
<div class="price-display">
<span class="original">1.080.000đ</span>
<span class="discounted">972.000đ</span>
</div>
<a href="https://tak12.com/license/ex/234/564?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>COMBO ANH + TOÁN - Các Tỉnh</h4>
<p>Ôn thi vào lớp 10</p>
<ul class="course-features-mini">
<li>Học ôn, luyện đề môn Anh & Toán</li>
<li>Phù hợp cho tất cả các tỉnh</li>
<li>Luyện đề và kỹ thuật làm bài</li>
</ul>
<div class="price-display">
<span class="original">860.000đ</span>
<span class="discounted">774.000đ</span>
</div>
<a href="https://tak12.com/license/ex/235/567?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item featured">
<div class="course-badge">Toàn Diện</div>
<h4>TRỌN BỘ - Ôn Thi Vào Lớp 6</h4>
<p>Chuẩn bị toàn diện</p>
<ul class="course-features-mini">
<li>Chuẩn bị toàn diện</li>
<li>Luyện thi vào các trường THCS</li>
<li>Phù hợp cho học sinh lớp 5</li>
</ul>
<div class="price-display">
<span class="original">2.780.000đ</span>
<span class="discounted">2.502.000đ</span>
</div>
<a href="https://tak12.com/license/ex/60/497?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
</div>
</div>
<!-- University Tab -->
<div id="university" class="tab-content">
<div class="course-grid">
<div class="course-item">
<h4>Tốt nghiệp THPT</h4>
<p>Ôn thi THPT Quốc gia</p>
<ul class="course-features-mini">
<li>Ôn thi Tốt nghiệp THPT</li>
<li>Luyện đề theo cấu trúc mới</li>
<li>Kỹ thuật làm bài hiệu quả</li>
</ul>
<div class="price-display">
<span class="original">590.000đ</span>
<span class="discounted">531.000đ</span>
</div>
<a href="https://tak12.com/license/ex/1/502?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item featured">
<div class="course-badge">Combo</div>
<h4>COMBO ĐẠI HỌC</h4>
<p>TN THPT + ĐGNL</p>
<ul class="course-features-mini">
<li>Tốt nghiệp THPT</li>
<li>Đánh giá năng lực</li>
<li>Combo tiết kiệm nhất</li>
<li>Phù hợp học sinh lớp 12</li>
</ul>
<div class="price-display">
<span class="original">890.000đ</span>
<span class="discounted">801.000đ</span>
</div>
<a href="https://tak12.com/license/ex/1/514?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>ĐGNL</h4>
<p>Đánh giá năng lực</p>
<ul class="course-features-mini">
<li>Đánh giá năng lực ĐH Quốc gia</li>
<li>Luyện đề và phân tích chi tiết</li>
<li>Kỹ thuật làm bài nhanh và chính xác</li>
</ul>
<div class="price-display">
<span class="original">590.000đ</span>
<span class="discounted">531.000đ</span>
</div>
<a href="https://tak12.com/license/ex/137/585?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
</div>
</div>
<!-- Support Tab -->
<div id="support" class="tab-content">
<div class="course-grid">
<div class="course-item">
<h4>HỖ TRỢ HỌC TẬP - 1 Năm</h4>
<p>Tích hợp sách giáo khoa</p>
<ul class="course-features-mini">
<li>Tích hợp sách giáo khoa</li>
<li>Hỗ trợ học tập hàng ngày</li>
<li>Phù hợp mọi lớp học</li>
<li>Truy cập 1 năm</li>
</ul>
<div class="price-display">
<span class="original">540.000đ</span>
<span class="discounted">486.000đ</span>
</div>
<a href="https://tak12.com/license/ex/92/385?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item">
<h4>HỖ TRỢ HỌC TẬP - 2 Năm</h4>
<p>Tích hợp sách giáo khoa</p>
<ul class="course-features-mini">
<li>Tích hợp sách giáo khoa</li>
<li>Hỗ trợ học tập hàng ngày</li>
<li>Phù hợp mọi lớp học</li>
<li>Truy cập 2 năm</li>
</ul>
<div class="price-display">
<span class="original">810.000đ</span>
<span class="discounted">729.000đ</span>
</div>
<a href="https://tak12.com/license/ex/92/473?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
<div class="course-item featured">
<div class="course-badge">Tốt Nhất</div>
<h4>HỖ TRỢ HỌC TẬP - 5 Năm</h4>
<p>Tích hợp sách giáo khoa</p>
<ul class="course-features-mini">
<li>Tích hợp sách giáo khoa</li>
<li>Hỗ trợ học tập hàng ngày</li>
<li>Phù hợp mọi lớp học</li>
<li>Truy cập 5 năm</li>
<li>Giá trị tốt nhất</li>
</ul>
<div class="price-display">
<span class="original">1.500.000đ</span>
<span class="discounted">1.350.000đ</span>
</div>
<a href="https://tak12.com/license/ex/92/474?ref=njg2odn" target="_blank" class="select-course">Xem thêm</a>
</div>
</div>
</div>
</div>
<div class="catalog-footer">
<div class="coupon-warning">
<span>Lưu ý: Nhập mã <strong>DSMANHTUAN</strong> khi thanh toán để được giảm giá 10%</span>
</div>
<div class="price-disclaimer">
<span>*Giá các khóa học có thể thay đổi theo thời gian. Mã giảm giá DSMANHTUAN luôn áp dụng giảm 10% trên giá hiện tại tại thời điểm thanh toán.</span>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<section class="testimonials">
<div class="container">
<div class="section-header">
<h2>Phụ Huynh Nói Gì Về TAK12</h2>
</div>
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="testimonial-content">
<p>"Tiếng Anh của con gái tôi cải thiện đáng kể chỉ sau 3 tháng. Các khóa luyện thi Cambridge rất tuyệt vời!"</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<strong>Cô Nguyễn</strong>
<span>Phụ huynh học sinh lớp 7</span>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
<p>"Tính năng tích hợp sách giáo khoa rất tuyệt. Nó bổ sung hoàn hảo cho những gì con trai tôi học ở trường."</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<strong>Anh Tuấn</strong>
<span>Phụ huynh học sinh lớp 4</span>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
<p>"TAK12 đã giúp con tôi đậu thi vào lớp 10 với điểm số cao. Rất đáng khuyến khích!"</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<strong>Cô Lê</strong>
<span>Phụ huynh học sinh lớp 9</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="faq">
<div class="container">
<div class="section-header">
<h2>Câu Hỏi Thường Gặp</h2>
<p>Tìm hiểu thêm về khóa học và dịch vụ của TAK12</p>
</div>
<div class="faq-container">
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>TAK12 có phù hợp với tất cả độ tuổi không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, TAK12 được thiết kế cho học sinh từ lớp 1 đến lớp 12. Chúng tôi có các chương trình Toán học theo sách giáo khoa và Tiếng Anh từ cơ bản đến nâng cao cho từng độ tuổi, từ tiểu học đến THPT.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Mã giảm giá DSMANHTUAN có áp dụng cho tất cả khóa học không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, mã DSMANHTUAN giảm 10% áp dụng cho tất cả khóa học tại TAK12. Chỉ cần nhập mã này khi thanh toán để nhận được ưu đãi ngay lập tức.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>TAK12 có chỉ dạy Tiếng Anh hay còn các môn khác?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>TAK12 không chỉ dạy Tiếng Anh mà còn có đầy đủ khóa học Toán học cho lớp 2-12. Ngoài ra còn có các khóa ôn thi vào lớp 6, lớp 10, tốt nghiệp THPT và các chứng chỉ quốc tế như Cambridge, TOEFL, IELTS.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Có thể học offline hay chỉ học online?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>TAK12 là nền tảng học trực tuyến, cho phép học sinh học mọi lúc mọi nơi. Tuy nhiên, một khi đã tải xuống bài học, học sinh có thể tiếp tục học offline mà không cần internet liên tục.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Có hỗ trợ theo dõi tiến độ học tập của con không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, TAK12 cung cấp báo cáo tiến độ chi tiết giúp phụ huynh theo dõi kết quả học tập của con em cho cả Toán và Tiếng Anh. Bao gồm điểm số, thời gian học, và những kỹ năng cần cải thiện.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Khóa học có tích hợp với sách giáo khoa không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, TAK12 tích hợp với sách Toán "Kết nối tri thức", "Cánh diều" và sách Tiếng Anh như Oxford Discover, Global Success, và i-Learn Smart. Điều này giúp học sinh bổ trợ kiến thức đa môn từ trường lớp một cách hiệu quả.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Có thể hủy khóa học và hoàn tiền không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>TAK12 có chính sách hoàn tiền trong vòng 7 ngày đầu nếu khóa học không phù hợp. Vui lòng liên hệ trực tiếp qua website tak12.com để được hỗ trợ cụ thể về chính sách này.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Có giáo viên hỗ trợ trực tiếp không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, TAK12 có đội ngũ giáo viên sẵn sàng hỗ trợ học sinh qua hệ thống chat và email. Ngoài ra còn có các buổi tư vấn trực tuyến định kỳ để giải đáp thắc mắc.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="toggleFAQ(this)">
<span>Sau khi mua khóa học, có ngay lập tức truy cập được không?</span>
<span class="faq-icon">+</span>
</button>
<div class="faq-answer">
<p>Có, sau khi thanh toán thành công, học sinh sẽ nhận được thông tin đăng nhập và có thể truy cập khóa học ngay lập tức. Không cần chờ đợi hay xử lý thêm.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section">
<div class="container">
<div class="cta-content">
<h2>Sẵn Sàng Nâng Cao Kết Quả Học Tập Của Con?</h2>
<p>Tham gia cùng hàng nghìn phụ huynh hài lòng đã chọn TAK12 cho việc giáo dục toàn diện Toán và Tiếng Anh của con em</p>
<div class="promo-reminder">
<strong>Đừng quên:</strong> Sử dụng mã <span class="promo-code-large">DSMANHTUAN</span> để giảm 10%
<div class="cta-disclaimer">*Giá khóa học có thể thay đổi, mã giảm giá luôn giảm 10% trên giá hiện tại</div>
</div>
<div class="cta-buttons">
<a href="https://tak12.com/?ref=njg2odn" class="primary-button large" target="_blank">
Bắt Đầu Học Ngay
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>TAK12 Giáo Dục K-12</h4>
<p>Trao quyền cho trẻ em với nền tảng học tập Toán và Tiếng Anh vững chắc cho tương lai tươi sáng</p>
</div>
<div class="footer-section">
<h4>Liên Kết Nhanh</h4>
<a href="https://tak12.com/?ref=njg2odn" target="_blank">Trang Web Chính Thức</a>
<a href="https://tak12.com/info/bang-gia?ref=njg2odn" target="_blank">Danh Mục Khóa Học</a>
</div>
<div class="footer-section">
<h4>Liên Hệ</h4>
<p>Truy cập <a href="https://tak12.com/?ref=njg2odn" target="_blank">tak12.com</a> để được hỗ trợ</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025. Đây là trang quảng cáo liên kết. Tất cả nội dung khóa học và dịch vụ được cung cấp bởi TAK12.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>