Netbyzz
<!-- CODE = #A033 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>NETBYZZ A033</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12 text-center"> <h3 class="animate-charcter">Netbyzz</h3> </div> </div> </div> </body> </html>
.animate-charcter { margin-left: 15%; text-transform: uppercase; background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%); background-size: auto auto; background-clip: border-box; background-size: 200% auto; color: #fff; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textclip 5s linear infinite; display: inline-block; font-size: 190px; } @keyframes textclip { to { background-position: 200% center; } }