delete all decoration for link code example
Example 1: remove underline html
<a style="text-decoration: none;"></a>
Example 2: remove basic html style link
body {
color: blue;
}
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}