You change properties of a link when the link has actually been visited by using a pseudo-selector that looks like a:visited { propertyName: propertyValue; }.
Change the color of the footer Visit our website link to be grey when a user has visited the link.
a:visited{color: grey;}
Sorry, your code does not pass. You’re getting there.
You should use the a:visited pseudoselector.
i even followed youtube videos checked the last post whose concern was similar to mine. What am i doing wrong?
That code is correct but there might be an error somewhere else in your CSS code. Are you missing a closing curly bracket from the previous selector perhaps?
It’s always best to post your full code, so that we can see what might be going wrong.