Recently, I utilized font-awesome with the following code:
<i class="fa fa-circle-o text-red"></i>
Instead of a circle with a red outline, I would like it to be a solid red circle that blinks.
I'm not well-versed in front-end development, so finding a solution has been challenging for me.
I attempted to apply the following CSS:
.text-red
{
background-color: red;
}
However, this failed to produce the desired result. Can someone offer assistance? Thank you