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 { /* unvisited link */ color: #000; text-decoration: none; border: none; }
a:visited { /* visited link */ color: #000; }
a:hover { /* mouse over link */ color: #000; border: none; }
a:active { /* active link */ color: #000; }

Example 5: css how to style a

/*a normal, unvisited link*/
a:link{
	color: green;
}
/*a link the user has visited*/
a:visited{
	color: purple;
}
/*a link when the user mouses over it*/
a:hover{
	color: yellow;
}
/*a link the moment it is clicked*/
a:active{
	color: brown;
}

Tags: