no link styling code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: linking in css
<p><a href>.css</a></p>
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
<p><a href>.css</a></p>