html underlined link color code example
Example 1: css underline color
u
{
text-decoration: underline;
text-decoration-color: red;
}
example of use: (in html)
<p>The word <u>CAT</u>, is underlined </p>
Example 2: html link color
<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>
Example 3: how to remove link blue color from a tag using css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}