how to remove styling from link code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: how to remove underline from link in html
<body>
<h2>About</h2>
<p>
<!-- Just add text decoration style:None -->
Our <a href="" style="text-decoration: none;">Team</a>
</p>
</body>
Example 3: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Example 4: remove basic html style link
a {
color: blue;
text-decoration: none;
}
Example 5: remove basic html style link
body {
color: blue;
}
a {
color: inherit;
text-decoration: inherit;
}