Horje
remove underline from hyperlink Code Example
remove underline from hyperlink
 a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
how to remove underline from link in html
<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a rel="nofollow" href="" style="text-decoration: none;">Team</a>
   </p>
</body>
how to remove underline from link in html
<a rel="nofollow" href="http://yoursite.com/" style="text-decoration:none">yoursite</a>
how to remove underline from link in html
how to remove underline from a tag:

<a rel="nofollow" style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
how to remove underline from link
<a rel="nofollow" style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
remove underline in anchor tag
text-decoration:none;




Css

Related
remove blue border on a input Code Example remove blue border on a input Code Example
rotate div css Code Example rotate div css Code Example
remove underline from a link css Code Example remove underline from a link css Code Example
button background color remove Code Example button background color remove Code Example
remove underline hover css Code Example remove underline hover css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16