0
How to apply font color of a link
How to apply font color of a link in the list or in a table
3 Answers
+ 3
<a style="backround-color:red;">you link<\a>
+ 1
Add a class to the link and in the css file select the class and add styles to it example
<a class="link" >link</a>
Css file app.css
.link{
All the styles here....
}