Tutorials

https://vvcestudio.com.br/en/tutorial/css/css08/
menu

CSS 8 - Effects with the hover attribute

Hover applies a style change to an object when clicked by the user, without the need for JavaScript.

HTML code:
x
<a class="cssLinkHover" href="/eu/curriculo">Este é um link</a>
CSS code:
x
.cssLinkHover{color : #000000;}
.cssLinkHover:hover{color : red;}