CSS 'links and text decoration' Error?

https://www.codecademy.com/en/courses/web-beginner-en-TlhFi/4/5?curriculum_id=50579fb998b470000202dc8b

Is telling me that I haven’t set the text decoration to none?



a {
    text-decoration:none;
    color:#CC0000;
}


Could I see your HTML pls

In your head tags you have the link tag, linking in your CSS to your HTML, that tag is broken you have semi colons you need to remove it, just a space between is fine :slight_smile:

Thank you! It still doesn’t seem to be working though…

no need to wrap all the attributes (type, rel, href) into ", remove them

1 Like

THANKKK YOUU woohoo that worked :slight_smile: