how to remove underline from link

47

how to remove underline from link in html -

<a href="http://yoursite.com/" style="text-decoration:none">yoursite</a>

how to remove underline from link -

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>

how to remove underline from link -

a{
   text-decoration: none;
}

Comments

Submit
0 Comments