html hover button
<button class="hoverme">hover me</button>
<style>
.hoverme{
background-color: cyan;
border: none;
height: 100px;
width: 200px;
}
.hoverme:hover{
background-color: blue;
opacity: 0.6;
}
</style>