Thông tin
<html lang="vi"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Chữ chạy Messi is GOAT</title> <style> body { background-color: #f0f0f0; font-family: Arial, sans-serif; }
.marquee {
width: 100%;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
background-color: #f0f0f0;
}
.marquee-content {
display: inline-block;
animation: marquee 10s linear infinite;
color: #add8e6;
font-size: 24px;
font-weight: bold;
}
@keyframes marquee {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
</style> </head>
<body> Messi is GOAT </body> </html>