I don't get how to use ađź”— a:visited: a:hover:

i don’t get how to use
a:link: An unvisited link.
a:visited: A visited link.
a:hover: A link you’re hovering your mouse over.

in html and css.stuck at links while going through the free coding exercises for html andcss.

Please help!give me examples…

When you write <a href="#">hello</a> at the html file, you will find a link called hello

this link when you want to make it’s color red when someone hover on, so use a:hover at the css file:

a:hover {
         color: red;
}

And the same thing in the rest. :slight_smile:

1 Like