how to erase the color and underline of a link in css code example
Example 1: css desactivate underline
text-decoration: none;
Example 2: how to not underline links in css
a {
text-decoration: none;
}
text-decoration: none;
a {
text-decoration: none;
}