Guys need an estimate for "the first step of CSS"

Guys need an estimate for the first step of CSS. Here is my solution code. Thank you in advance for your feedback!

Congratulations! Great job :tada:

Only one small improvement:
Since a:link targets not visited links and a:visited targets visited links your rule

a:link,
a:visited {
}

targets all links. Therefore you can just write

a {
}

I hope that helps!

Have a nice day,
Michael

2 Likes