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