html tag hover code example
Example 1: hover style html
/* css file */
.callitwhatever:hover
{
background: none;
}
/* HTMl File */
<li><a href="#" class="callitwhatever"> Logo</a></li>
Example 2: hover in html
//Select and style a link when you mouse over it:
a:hover
{
background-color: yellow;
}