0
how do I remove the default color blue from a link
4 Antworten
+ 1
In <body> tag put "link" attribute
for example.. <body link="red">
this will change your link colour..
+ 1
The best way to do it is by using this code in your style sheet 
a:link{
color:"what ever color u want ";
} 
/* for the default color for the links */
a:visited {
color :" for the color u want when the link has been visited; 
} 
0
you can try this
a { color: #0060B6; text-decoration: none; } a:hover { color:#00A0C6; text-decoration:none; cursor:pointer; }
- 1
how are you




![[No Name] - avatar](https://blob.sololearn.com/avatars/014f6b19-1a75-43e2-b80d-9961db7f1ccc.jpg)



