remove default link styling css code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove default style from links css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}