how to remove blue underline in a tag code example
Example 1: remove underline html
<a style="text-decoration: none;"></a>
Example 2: remove basic html style link
a {
color: blue;
text-decoration: none; /* no underline */
}
<a style="text-decoration: none;"></a>
a {
color: blue;
text-decoration: none; /* no underline */
}