CSS change de couleur sur planant
<!--
To change the color when hovering in CSS,
you will use the CSS selector called :hover
Example:
-->
<style>
button:hover {
background-color: darkred;
}
</style>
Lonely Ladybird