I did everything perfect but the 6th condition was not met and I asked the artificial intelligence in great detail and tried many ways, but it is still not accepted.
At first it was like that but since it didn’t work I moved it to the first line. After your comment I tried moving it to the lower line again but it doesn’t work
Then how should i do? Only this step not approved; “6. You should have a list of fonts containing Helvetica and Times New Roman with sans-serif as a fallback.”
I didn’t just use the “body” block, I also tried the .first and .second blocks separately and in conjunction with each other, but it didn’t work. Like this;
.first,
.second {
font-family:Helvetica, “Times New Roman”, sans-serif;
}
or
.first {
font-family:Helvetica, “Times New Roman”, sans-serif;
}
.second {
font-family:Helvetica, “Times New Roman”, sans-serif;
}
Thank you. When I added font-family to the line where I used font-size as a declaration and where there were two classes (without opening a separate block, in continuation of font-size), it was accepted.