how to remove the text underline for a href link in css code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove basic html style link
a {
color: blue;
text-decoration: none; /* no underline */
}