+ 3
how can i create multicolored text?
4 Answers
+ 2
You may try CSS Gradient if you want it just multicolored not single color each character
//HTML
<h1 class="colored"> TEXT HERE IS AWESOME</h1>
//CSS
.colored {
background: linear-gradient(to right, Crimson, Indigo, LimeGreen, OrangeRed);
background: -webkit-linear-gradient(to right, Crimson, Indigo, LimeGreen, OrangeRed);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
+ 16
U can get ur answer with codes as example heređ
https://www.sololearn.com/Discuss/1132863/?ref=app
+ 4
To create text with different colors, use the < font color=âcolorâ> âŠ< /font> tags for every character that you want to apply a color. You can use this tag combination as many times as needed, surrounding a single character or an entire word
+ 3
@Nilesh thank youđ