I'm trying to make a title with multiple colors and I've already found a way but I'm not quite satisfied with it. I want it to be on attribute or a h1 element, with the text and the multiple colors
Here's what I've been using
body {
background-color: #1A1A1D;
}
.header {
text-align: center;
font-size: 48px;
}
#super {
color: #FF6447;
text-shadow: 2px 2px #000000;
}
#bone {
color: #FFB951;
text-shadow: 2px 2px #000000;
}
#craft {
color: #FFF547;
text-shadow: 2px 2px #000000;
}
<div class="header">
<a id="super">SUPER</a><a id="bone">BONE</a><a id="craft">CRAFT</a>
</div>