Use the Text element and give it the tag you need H1/H2 etc... This is very important.
And then add the following CSS to the custom CSS of the text element. Don't forget to change the Html tag. This code is for H2. You can also change the font-family/size etc... Pure CSS
h2 {
background: linear-gradient(to right, hsl(0, 0%, 30%) 0, hsl(0, 0%, 100%) 10%, hsl(0, 0%, 30%) 20%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shine 3s infinite linear;
}
@keyframes shine {
0% {
background-position: 0;
}
50% {
background-position: 500px;
}
100% {
background-position: 1000px;
}
}
Thanks
If you want just to say thank you or help us maintain this page, Feel free to donate whatever you want
And feel free to ask for tutorials or tips that you would like to discover on the site