Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHeather Aiello
Courses Plus Student 259 PointsAdd a body selector and set the font family to 'Nunito' with a sans-serif fallback.
body { font-family: 'Nunito'. sans-serif; color: #FAF3BC; backround: #420600 url('img/bg-texture.jpg') repeat; this is what I put in for that 1 of 4 challenge questions. what am I doing wrong?
4 Answers
Omar Morales
3,992 PointsI can see a period just after 'Nunito' that should be a comma.
Juan Jose Cortes Guzman
7,894 PointsHi, you need to separate with a comma each font family
body { font-family: 'Nunito', sans-serif; }
Heather Aiello
Courses Plus Student 259 Pointsthank you so much!
Khurram Muslim
12,391 PointsThis Challenge just needs you to select body selector and set font family like this;
body { font-family: 'Nunito', sans-serif; color: #FAF3BC; background: #420600 url('img/bg-texture.jpg') repeat; }
Heather Aiello
Courses Plus Student 259 Pointsthank you so much! I guess I must've been tired and didn't realize I had a period there.