-
Notifications
You must be signed in to change notification settings - Fork 7
/
indexcu.html
1152 lines (1054 loc) · 35.2 KB
/
indexcu.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="vi">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Tân 7 Cú - Dự án Web Senior Đầu Tay</title>
<meta
name="description"
content="Khám phá các công cụ trực tuyến hữu ích như tải lên tệp, rút gọn liên kết, tạo mã QR và nhiều hơn nữa!"
/>
<meta
name="keywords"
content="tải lên tệp, rút gọn liên kết, tạo mã QR, kiểm tra API, dự báo thời tiết"
/>
<meta name="author" content="Tân 7 Cú" />
<meta name="robots" content="index, follow" />
<meta
property="og:title"
content="Trang Chủ - Công Cụ Hữu Ích Trực Tuyến"
/>
<meta
property="og:description"
content="Khám phá các công cụ trực tuyến hữu ích. Tải lên tệp, rút gọn liên kết, tạo mã QR và nhiều hơn nữa!"
/>
<meta
property="og:image"
content="https://i.postimg.cc/nhvjk62Q/Tan-7-cu-2.png"
/>
<meta property="og:url" content="https://tanbaycu.vercel.app" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Trang Chủ - Công Cụ Hữu Ích Trực Tuyến"
/>
<meta
name="twitter:description"
content="Khám phá công cụ trực tuyến hữu ích. Tải lên tệp, rút gọn liên kết, tạo mã QR và nhiều hơn nữa!"
/>
<meta
name="twitter:image"
content="https://i.postimg.cc/nhvjk62Q/Tan-7-cu-2.png"
/>
<link rel="canonical" href="https://tanbaycu.vercel.app" />
<link
rel="icon"
type="image/png"
href="https://i.postimg.cc/nhvjk62Q/Tan-7-cu-2.png"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<style>
:root {
--primary-color: #6c63ff;
--secondary-color: #4caf50;
--background: #0f172a;
--surface: #1e293b;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--accent: #ffa500;
--font-size-base: 16px;
--spacing-unit: 1rem;
}
html {
font-size: var(--font-size-base);
}
body {
font-family: "Poppins", sans-serif;
background-color: var(--background);
color: var(--text-primary);
line-height: 1.5;
overflow-x: hidden;
font-size: 1rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.navbar {
background: rgba(30, 41, 59, 0.8);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: var(--spacing-unit) 0;
transition: all 0.3s ease;
}
.navbar-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 1rem;
}
.nav-links a,
.menu-button {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
font-size: 1rem;
padding: 0.5rem;
}
.nav-links a:hover,
.menu-button:hover {
color: var(--accent);
}
.menu-button {
background: none;
border: none;
cursor: pointer;
}
.menu-button svg {
width: 24px;
height: 24px;
}
/* Hero Section Styles */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
padding: 4rem 1rem;
}
.hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
45deg,
rgba(108, 99, 255, 0.2),
rgba(76, 175, 80, 0.2)
);
z-index: -1;
}
.hero-content {
max-width: 800px;
}
.hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}
.hero p {
font-size: clamp(1rem, 3vw, 1.2rem);
color: var(--text-secondary);
margin-bottom: 2rem;
animation: fadeInUp 1s ease 0.2s;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Features Section Styles */
.features {
padding: 4rem 1rem;
background-color: var(--surface);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-card {
background: rgba(15, 23, 42, 0.6);
border-radius: 10px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.feature-icon {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1rem;
}
.feature-title {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
.feature-description {
color: var(--text-secondary);
font-size: 0.9rem;
}
/* Action Buttons Styles */
.action-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.action-button {
background-color: var(--primary-color);
color: var(--text-primary);
padding: 0.75rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease, transform 0.3s ease;
font-size: 1rem;
width: 100%;
max-width: 250px;
}
.action-button:hover {
background-color: var(--secondary-color);
transform: translateY(-3px);
}
/* Off-canvas Menu Styles */
.off-canvas-menu {
position: fixed;
top: 0;
left: -300px;
width: 80%;
max-width: 300px;
height: 100%;
background-color: var(--surface);
z-index: 2000;
transition: left 0.3s ease;
overflow-y: auto;
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.off-canvas-menu.open {
left: 0;
}
.menu-header {
display: flex;
align-items: center;
padding: 1rem;
background-color: var(--primary-color);
}
.menu-logo {
width: 2.5rem;
height: 2.5rem;
margin-right: 10px;
border-radius: 50%;
}
.menu-header h2 {
color: var(--text-primary);
font-size: 1.2rem;
margin: 0;
}
.menu-nav {
padding: 20px 0;
}
.menu-nav a {
display: flex;
align-items: center;
padding: 0.75rem 1rem;
color: var(--text-primary);
text-decoration: none;
transition: background-color 0.3s ease;
font-size: 1rem;
}
.menu-nav a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.menu-nav i {
margin-right: 10px;
font-size: 1.2rem;
width: 20px;
text-align: center;
}
.close-menu {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
}
/* Footer Styles */
.footer {
background-color: var(--surface);
color: var(--text-secondary);
padding: 2rem 1rem;
text-align: center;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-links {
display: flex;
gap: 1rem;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
font-size: 0.9rem;
}
.footer-links a:hover {
color: var(--accent);
}
.social-icons {
display: flex;
gap: 1rem;
}
.social-icons a {
color: var(--text-secondary);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: var(--accent);
}
/* Styles mới cho Animated Counters */
.counters-section {
padding: 4rem 0;
background-color: var(--surface);
}
.counters-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.counter-item {
text-align: center;
padding: 2rem;
background-color: var(--background);
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.counter-item:hover {
transform: translateY(-5px);
}
.counter-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.counter {
font-size: 2.5rem;
font-weight: bold;
color: var(--text-primary);
}
.counter-label {
display: block;
margin-top: 0.5rem;
font-size: 1rem;
color: var(--text-secondary);
}
/* Styles mới cho Carousel */
.carousel-section {
padding: 4rem 0;
background-color: var(--background);
}
.carousel {
position: relative;
width: 100%;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
}
.carousel-inner {
display: flex;
transition: transform 0.5s ease;
}
.carousel-item {
flex: 0 0 100%;
position: relative;
}
.carousel-item img {
width: 100%;
height: auto;
object-fit: cover;
}
.carousel-caption {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 1rem;
text-align: center;
}
.carousel-control {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
font-size: 1.5rem;
padding: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.carousel-control:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.carousel-control.prev {
left: 10px;
}
.carousel-control.next {
right: 10px;
}
/* Styles mới cho Newsletter Signup */
.newsletter-section {
padding: 4rem 0;
background-color: var(--surface);
text-align: center;
}
.newsletter-form {
display: flex;
justify-content: center;
margin-top: 2rem;
}
.newsletter-form input[type="email"] {
padding: 0.5rem 1rem;
font-size: 1rem;
border: none;
border-radius: 4px 0 0 4px;
width: 100%;
max-width: 300px;
}
.newsletter-form button {
padding: 0.5rem 1rem;
font-size: 1rem;
background-color: var(--primary-color);
color: var(--text-primary);
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
background-color: var(--secondary-color);
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container navbar-content">
<div class="nav-links">
<a href="{{ url_for('homepage', refresh=time()) }}">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
</a>
<a href="/about-me">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M5.52 19c.64-2.2 1.84-3 3.22-3h6.52c1.38 0 2.58.8 3.22 3"
/>
<circle cx="12" cy="10" r="3" />
<circle cx="12" cy="12" r="10" />
</svg>
</a>
<a href="/dev">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M14 2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V8l-6-6z"
></path>
<path d="M14 3v5h5M16 13H8M16 17H8M10 9H8" />
</svg>
</a>
</div>
<button class="menu-button" id="menu-toggle" aria-label="Open menu">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
</div>
</nav>
<div class="off-canvas-menu" id="off-canvas-menu">
<button id="close-menu" class="close-menu" aria-label="Close menu">
×
</button>
<div class="menu-header">
<img
src="https://i.postimg.cc/nhvjk62Q/Tan-7-cu-2.png"
alt="Tân 7 Cú Logo"
class="menu-logo"
/>
<h2>Tân 7 Cú</h2>
</div>
<nav class="menu-nav">
<a href="/upload_file"><i class="fas fa-upload"></i>Upload tệp</a>
<a href="/aichat"><i class="fas fa-robot"></i> Chat với Gemini</a>
<a href="/shorten-link"><i class="fas fa-link"></i>Rút gọn link</a>
<a href="/api-check"><i class="fas fa-code"></i>Kiểm tra API</a>
<a href="/qrcode"><i class="fas fa-qrcode"></i>Tạo mã QRCODE</a>
<a href="/clipython"><i class="fab fa-python"></i>Trình chạy Python</a>
<a href="/facts"><i class="fas fa-lightbulb"></i>Fact</a>
<a href="/trivia"><i class="fas fa-brain"></i> Trivia</a>
<a href="/ipconfig"><i class="fas fa-network-wired"></i>IP check</a>
<a href="/weather"><i class="fas fa-cloud-sun"></i>Dự báo thời tiết</a>
<a href="/urldownload"><i class="fas fa-download"></i>Download Video</a>
<a href="/random-image"><i class="fas fa-image"></i>Random Image</a>
<a href="/news"><i class="fas fa-newspaper"></i>Tin tức</a>
<a href="/pdf"><i class="fas fa-file-pdf"></i>PDF</a>
<a href="/mamorse"
><i class="fa fa-assistive-listening-systems"></i>Mã morse</a
>
<a href="/spotify"><i class="fab fa-spotify"></i>Clone Spotify</a>
<a href="/crypto"><i class="fab fa-bitcoin"></i> Bitcoin</a>
<a href="/formatcode"
><i class="fas fa-file-code"></i>Code Beautifier</a
>
<a href="/password"><i class="fas fa-key"></i>Check Password</a>
<a href="/country"
><i class="fas fa-globe"></i>Xem thông tin các nước</a
>
<a href="/bmi"><i class="fas fa-weight"></i>Tính BMI</a>
<a href="/math"><i class="fas fa-calculator"></i>Làm toán</a>
<a href="/documents"><i class="fas fa-clipboard"></i> API Documents</a>
<a href="/about"><i class="fas fa-info-circle"></i>About</a>
<a href="/tools"><i class="fas fa-tools"></i> More Tools</a>
<a href="/webapp"><i class="fas fa-tools"></i> More Webapp</a>
</nav>
</div>
<div class="overlay" id="overlay"></div>
<header class="hero">
<div class="container hero-content">
<h1>Chào mừng bạn đến với Website của tôi</h1>
<p>Khám phá các công cụ trực tuyến hữu ích ngay tại đây!</p>
<div class="action-buttons">
<a href="/upload_file" class="action-button">Upload File</a>
<a href="/aichat" class="action-button">Gemini AI</a>
<a href="/shorten-link" class="action-button">Shorten Link</a>
<a href="/api-check" class="action-button">API Checker</a>
<a href="/qrcode" class="action-button">QR Code Generator</a>
<a href="/formatcode" class="action-button">Format Code</a>
</div>
</div>
</header>
<section class="counters-section">
<div class="container">
<h2>Thống kê ấn tượng</h2>
<div class="counters-grid">
<div class="counter-item">
<i class="fas fa-users counter-icon"></i>
<span class="counter" data-target="1785632711">0</span>
<span class="counter-label">Page views</span>
</div>
<div class="counter-item">
<i class="fas fa-tools counter-icon"></i>
<span class="counter" data-target="25">0</span>
<span class="counter-label">Công cụ</span>
</div>
<div class="counter-item">
<i class="fas fa-globe counter-icon"></i>
<span class="counter" data-target="11">0</span>
<span class="counter-label">Thành viên</span>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2>Các công cụ và tính năng</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-upload"></i></div>
<h3 class="feature-title">Upload tệp</h3>
<p class="feature-description">
Tải lên và quản lý tệp của bạn một cách dễ dàng
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-robot"></i></div>
<h3 class="feature-title">Chat với Gemini</h3>
<p class="feature-description">
Trò chuyện thông minh với AI Gemini
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-link"></i></div>
<h3 class="feature-title">Rút gọn link</h3>
<p class="feature-description">Tạo liên kết ngắn gọn nhanh chóng</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-code"></i></div>
<h3 class="feature-title">Kiểm tra API</h3>
<p class="feature-description">
Công cụ mạnh mẽ để kiểm tra và debug API
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-qrcode"></i></div>
<h3 class="feature-title">Tạo mã QRCODE</h3>
<p class="feature-description">
Tạo mã QR tùy chỉnh cho mọi mục đích
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fab fa-python"></i></div>
<h3 class="feature-title">Trình chạy Python</h3>
<p class="feature-description">
Chạy và kiểm tra mã Python trực tuyến
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-lightbulb"></i></div>
<h3 class="feature-title">Fact</h3>
<p class="feature-description">
Khám phá những sự thật thú vị mỗi ngày
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-brain"></i></div>
<h3 class="feature-title">Trivia</h3>
<p class="feature-description">
Thử thách kiến thức của bạn với câu đố thú vị
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-network-wired"></i></div>
<h3 class="feature-title">IP check</h3>
<p class="feature-description">
Kiểm tra thông tin IP và mạng của bạn
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-cloud-sun"></i></div>
<h3 class="feature-title">Dự báo thời tiết</h3>
<p class="feature-description">Xem thông tin thời tiết cập nhật</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-download"></i></div>
<h3 class="feature-title">Download Video</h3>
<p class="feature-description">
Tải video từ các nền tảng trực tuyến
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-image"></i></div>
<h3 class="feature-title">Random Image</h3>
<p class="feature-description">
Khám phá hình ảnh ngẫu nhiên thú vị
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-newspaper"></i></div>
<h3 class="feature-title">Tin tức</h3>
<p class="feature-description">
Cập nhật tin tức mới nhất từ nhiều nguồn
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-file-pdf"></i></div>
<h3 class="feature-title">PDF</h3>
<p class="feature-description">Công cụ xử lý và quản lý tệp PDF</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fa fa-assistive-listening-systems"></i>
</div>
<h3 class="feature-title">Mã morse</h3>
<p class="feature-description">
Mã hóa và giải mã thông điệp Morse
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fab fa-spotify"></i></div>
<h3 class="feature-title">Clone Spotify</h3>
<p class="feature-description">
Trải nghiệm giao diện tương tự Spotify
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fab fa-bitcoin"></i></div>
<h3 class="feature-title">Bitcoin</h3>
<p class="feature-description">
Theo dõi giá và thông tin về Bitcoin
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-file-code"></i></div>
<h3 class="feature-title">Code Beautifier</h3>
<p class="feature-description">
Làm đẹp và định dạng mã nguồn của bạn
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-key"></i></div>
<h3 class="feature-title">Check Password</h3>
<p class="feature-description">
Kiểm tra độ mạnh và bảo mật của mật khẩu
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-globe"></i></div>
<h3 class="feature-title">Xem thông tin các nước</h3>
<p class="feature-description">
Khám phá thông tin chi tiết về các quốc gia
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-weight"></i></div>
<h3 class="feature-title">Tính BMI</h3>
<p class="feature-description">
Tính chỉ số khối cơ thể (BMI) của bạn
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-calculator"></i></div>
<h3 class="feature-title">Làm toán</h3>
<p class="feature-description">
Giải quyết các bài toán và phép tính
</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-clipboard"></i></div>
<h3 class="feature-title">API Documents</h3>
<p class="feature-description">Tài liệu và hướng dẫn sử dụng API</p>
</div>
</div>
</div>
</section>
<section class="carousel-section">
<div class="container">
<h2>Khám phá các tính năng của chúng tôi</h2>
<div class="carousel">
<div class="carousel-inner">
<div class="carousel-item">
<img
src="https://i.postimg.cc/g28fkFCW/D3-B27-CDC-20-BF-409-F-B9-A5-6-F35735-CB901.png"
alt="Tính năng 1"
height="400"
width="600"
/>
</div>
<div class="carousel-item">
<img
src="https://i.postimg.cc/y84bGpkr/A34-AFA92-B463-4-D6-F-A2-AB-B976-ABE57-E5-F.png"
alt="Tính năng 2"
/>
</div>
<div class="carousel-item">
<img
src="https://i.postimg.cc/cJTkrsTV/0-D1-B9067-EA7-F-4-D1-E-AE37-72621-C696075.png"
alt="Tính năng 3"
/>
</div>
<div class="carousel-item">
<img
src="https://i.postimg.cc/5jcnZjNF/45-A1-E069-5-A23-47-B3-A8-E5-F9-D914-F52-A3-B.png"
alt="Tính năng 3"
/>
</div>
<div class="carousel-item">
<img
src="https://i.postimg.cc/qB9rkLN2/9-C804781-D2-F5-4-BEA-9129-B1-A8-CF3-DCE1-C.png"
alt="Tính năng 3"
/>
</div>
</div>
<button class="carousel-control prev" aria-label="Previous slide">
❮
</button>
<button class="carousel-control next" aria-label="Next slide">
❯
</button>
</div>
</div>
</section>
<section class="newsletter-section">
<div class="container">
<h2>Đăng ký nhận bản tin</h2>
<p>
Nhận thông báo về các tính năng mới và mẹo sử dụng công cụ hàng tuần!
</p>
<form class="newsletter-form">
<input
type="email"
placeholder="Nhập địa chỉ email của bạn"
required
/>
<button type="submit">Đăng ký</button>
</form>
</div>
</section>
<footer class="footer">
<div class="container footer-content">
<p>© 2024 - Designed by Me with Flask and ❤️</p>
<div class="footer-links">
<a href="/">Trang Chủ</a>
</div>
<div class="footer-links">
<a href="/status">Status</a>
</div>
<div class="social-icons">
<a
href="https://github.com/tanbaycu"
target="_blank"
aria-label="GitHub"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
<a
href="https://www.facebook.com/tanbaycu.404s/"
target="_blank"
aria-label="Facebook"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
></path>
</svg>
</a>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/your-fontawesome-kit.js"
crossorigin="anonymous"
></script>