Stuck in Font Weight

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
In Fonts section in HTML and CSS, there is a lesson called “Font Weight” and I have got stuck.
There are given two instruction, First is used to say “In style.css, set the font weight of the paragraph to bold”. And 2nd is “In style.css, set the font weight of the paragraph to 100
When I perform the first task as per the first instruction, its done! But when I perform the 2nd task then I get stuck due to: both the instructions are saying to do same work in same paragraph like, to setting the font-weight in the paragraph to bold and 100.
So what should I do now, I cannot go to perform next lesson and I got stuck here.
Please solve this problem as soon as possible.
<Below this line, add a link to the EXACT exercise that you are stuck at.>

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.>
When I do the task of 1st instruction, its done. But when I do the 2nd instruction, it says did you set the font-weight to bold(of 1st instruction).

```

p {
color: AliceBlue;
font-family: Roboto, sans-serif;
font-size: 20px;
font-weight: 100;
line-height: 1.7em;
text-align: left;
width: 100%;
}

<do not remove the three backticks above>

Did you get past this,yet? Quite possibly it may have only required a Refresh and Run again?

I can’t go to next lesson until I have complete this section(Font-weight).
And I have done everything like, refreshing, signing out and signing back
again, but it can’t go to next.

This is the CSS for p in my completed work:

p {
  font-family: Roboto, sans-serif;
  color: AliceBlue;
  line-height: 1.7em;
  text-align: left;
  width: 100%;
  font-size: 20px;
  font-weight: 100;
}

The only thing different is the order, and that shouldn’t matter. Have you tried the Get Help menu?

I tried to get help, but it directly gets me into codecademy forums or
create a topic for your problems.
In short, it wasn’t helpful.

Thank you!
Your code worked for me. I just need to add one more line of code *again *of
font-weight: bold” in paragraph.

1 Like

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