link : styling css code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
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: link style css to html
<link rel="stylesheet" type="text/css"href="style.css">
Example 4: css a link style
a:link { color: #000; text-decoration: none; border: none; }
a:visited { color: #000; }
a:hover { color: #000; border: none; }
a:active { color: #000; }
Example 5: css how to style a
a:link{
color: green;
}
a:visited{
color: purple;
}
a:hover{
color: yellow;
}
a:active{
color: brown;
}