<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
Exercise 21 Links and text decoration:
In the stylesheet.css tab, give your a selector a color of #cc0000 and a text-decoration of none. Check out how the link changes in the Result tab!
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/web-beginner-en-TlhFi/3/3?curriculum_id=50579fb998b470000202dc8b#
<In what way does your code behave incorrectly? Include ALL error messages.>
I’m stucked, it keeps saying: Oops, try again. Add a semicolon after #cc0000.
HTML CODE:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Result</title>
</head>
<body>
<p>The below link goes to Google!</p>
<a href="http://www.google.com/">Google </a>
</body>
</html>
CSS CODE:
```
a
{
color: #cc0000 ;
text-decoration: none ;
}
<do not remove the three backticks above>
I ve tried also with this:
CSS CODE:
<do not remove the three backticks below>
a
{
color: #cc0000;
text-decoration: none;
}
<do not remove the three backticks above>
please help!