+ 3
How can I change the color of the link?
Is there some way to change it? I need to change it in this code: https://code.sololearn.com/Wi4AJ07MYJfc/?ref=app
4 Answers
+ 2
You can do it inline:
<a style="color:red;" href=""> </a>
Or in CSS tab:
a{
color:red;
}
+ 7
a{
color:red
}
changes all hyperlink colors to red
+ 2
have you tried using color?
0
on normal way