Which property can remove underline from a link in HTML? code example
Example 1: how to remove underline from list item in html
text-decoration: none; /* remove underline in text ; put this style in <a>
container; ie : link's container */
list-style : none; /* remove bullet points from list */
Example 2: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>