Gradient Text Color using CSS Style in HTML
The below CSS style is using for gradient color for your text in html.
h1 {
font-size: 55px;
background: -webkit-linear-gradient(left,#ca004b 0%, #4408f7 100%);
background: linear-gradient(to right,#ca004b 0%, #4408f7 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
I hope this will be helpful for you. If you have any doubts regarding this please comment it below.
