Problem Link: CSS Selectors in HTML / CSS
Learning course: Learn HTML / CSS
my code is achieving the desired output, it is still showing “wrong answer”
@adhiraj07 - can you let us know what code had you written for the css. Will check this out.
/* In the style.css file, make changes such that
- The color for all paragraphs updates to ‘blue’
- The font-family for all paragraphs updates to ‘Verdana’ */
p {
color: blue;
}
p {
font-family: verdana;
}