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 trialTara Jackson
Courses Plus Student 4,556 PointsStuck on this question need help.
Create a new rule by selecting the paragraph in the document. Create a font stack using Baskerville, Times New Roman, Times, serif. I tried using
p { font-family: Baskerville, Times New Roman, Times, serif; } but it isn't working though.
10 Answers
Luciano Oliveira
Front End Web Development Techdegree Student 11,548 PointsI am also having problem here.... here is what I got:
p { font-family: bakersville, "Times New Roman", Times, serif; }
Jay Smith
312 Pointsp { font-family: "Baskerville", Times New Roman, Times, Serif; }
Should work.
Juliano Vargas
Courses Plus Student 15,575 Pointscapitalize Bakersville like this: p { font-family:Baskerville,"Times New Roman",Times,serif; }
Pedro Marins
1,887 Pointsthank you!
Alex Benson
5,312 Pointsnone of these work!
Courtland Santos
8,547 Pointsp { font-family:Baskerville,"Times New Roman",Times,serif; }
Capitalization matters in fonts as well. So this should work!
Courtland Santos
8,547 PointsAlso, you need to put double quotes in your font name if it is more than one word. ex: "Times New Roman".
Juliano Vargas
Courses Plus Student 15,575 Pointstry using double quotes when more then one word like "Times New Roman"
Pedro Marins
1,887 Pointsp { font-family: bakersville, "Times New Roman", Times, serif; }
doesnt work!
Asim Khaliq
5,020 Pointsp { font-family: Baskerville, "Times New Roman", Times, Serif; }
Ary de Oliveira
28,298 PointsMy best for you... p { font: 1.5em Baskerville, "Times New Roman", Times, serif; }
Johanne Trippas
7,367 PointsJohanne Trippas
7,367 PointsSpelling mistake :) It is 'baSkerville' instead of 'bakerSville'.