a {
text-decoration: none;
color: #cc0000
}
whats wrong with this code?
a {
text-decoration: none;
color: #cc0000; <----------------------
}
whats wrong with this code?
i already fixed that and it still isnt working
a {
text-decoration: none;
color: #cc0000;
}
It says Did you remember to set your link’s text-decoration to none;?
Can i see your full css + html code?
<html>
<head>
<a href="url">i got the munchies</a>
<title>Result</title>
</head>
<body></body>
</html>```
a {
text-decoration: none;
color: #cc0000;
}
good you managed to format your code. either way, this:
<a href="url">i got the munchies</a>
should be between your body tags, then you need to include a link (<link>
), which will cause your stylesheet to be read, you need to connect the two files, if you don’t remember, take a look at this exercise. If you have any further questions, feel free to ask
And you might want to replace url
with an actual url (http://codecademy.com
or https://google.com
), so the link actually goes anywhere