linking in css code example

Example 1: text underline hover css

a:hover {
  text-decoration: underline;
}

Example 2: link style css to html

<link rel="stylesheet" type="text/css"href="style.css">

Example 3: html css linking

<link rel="stylesheet" href="styles.css">

Example 4: 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;
}

Example 5: linking in css

<p><a href>.css</a></p>

Tags:

Html Example