hover in style css code example
Example 1: css hover
.a:hover{background-color: black;}
Example 2: hover style html
/* css file */
.callitwhatever:hover
{
background: none;
}
/* HTMl File */
<li><a href="#" class="callitwhatever"> Logo</a></li>