Html css part 1 lesson 12 font-weigh code not working

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

this is the instruction

In style.css, set the font weight of the paragraph to bold. It’ll be difficult to notice, but the letters in the paragraphs will thicken a bit.

<Below this line, add a link to the EXACT exercise that you are stuck at.>
Link
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-weight?action=lesson_resume

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
error message:
Did you set the font weight of the paragraph to bold?

``` p { color: AliceBlue; font-size:20px; font-weight: bold;

font-family: Roboto, sans-serif;
line-height: 1em;
text-align: left;
width: 100%;
}

Replace this line with your code.

<do not remove the three backticks above>

I had the same problem but it worked when I tried it in Google Chrome

@j3rom3 I am assuming that this is in the newly upgraded html & css lessons that were just given to us a few days ago on the 5th of October. copy and paste this in for your paragraph in the style.css file:

p {
color: AliceBlue;
line-height: 1em;
text-align: left;
width: 100%;
font-family: ‘Roboto’, Sans-serif;
font-size: 20px;
line-height: 1.7em;
font-weight: bold;

Dont worry about my previous e mail, i tried what cstan17 suggested. I
opened it with chrome and it worked
Cheers
J3rom3

thank you cstan17, google chrome did the trick, I still don’t get why, but
at least I can move on.
cheers

hello danylrs, I pasted it but, it is still asking me if I set the
font-weight in the paragraph to bold

@j3rom3 hey dude, my apologies, I just saw this message, did you ever get to execute this lesson appropriately or are you still struggling?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.