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 trial

Design

Add 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
Omar Morales
3,992 Points

I can see a period just after 'Nunito' that should be a comma.

Hi, you need to separate with a comma each font family

body { font-family: 'Nunito', sans-serif; }

thank you so much!

Khurram Muslim
Khurram Muslim
12,391 Points

This 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; }

thank you so much! I guess I must've been tired and didn't realize I had a period there.