0
I don't want underline below my link, how to do it
Want code to write , so that no underline appear below link and it also doesn't change clour when clicked it
7 Antworten
+ 2
It has both the methods using css and doing it in html:
https://www.computerhope.com/issues/ch001787.htm
But I will suggest you to use CSS and HTML5
+ 2
In your css write:
a{
text-decoration:none;
}
For color:
a:link {
color:red;
}
And do the same for a:hover, a:visited and a:active
+ 1
Thanks
+ 1
You have to mention it in your css.
Visit this: https://www.w3schools.com/css/css_link.asp
+ 1
Chetali Shah thankyou
0
How to do it in html
0
Chetali Shah a:visted is predefine function , or we have to mention it when using css in html