<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>