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

HTML Build a Simple Website Styling Content Writing CSS

A few questions please

1.) I would like to down load mp3 from previous lesson. The back button does not take me back far enough. Is there another way I can get back to a particular lesson?

2.)

<div class="container clearfix">
     <div id= "featured-cupcake" class="grid_5 omega">
              OTHER INDENTED STUFF
     </div>
     </div>

Question: With respect to the two divs above...Why can't they be combined into one div? Why does this have to be two separate divs?

3.) With respect to the downloaded stylesheet for the font Nunito....is it simply that word,"Nunito that contects the "link href in the head with the word Nunito in the body of the CSS style sheet that causes the change in the document?

Thanks in advanced for help!

3 Answers

Charlie Jaime
Charlie Jaime
17,351 Points

Answer for question 2: Make sure your html indentation is correct the bottom closing div should be aligned with the container div. They have to be separate divs because they serve different purposes. The class container div holds all other html elements and has the grid.css layout rules. The other div is used to contain a specific part of the website that will be later moved around using the rules of the container div. Hope this helps.

Thanks Charlie - It did help!

1.) You should be able to get to any lesson from the main project page: http://teamtreehouse.com/library/build-a-simple-website

3.) The link that came from google web fonts simply loads and makes available the 'Nunito' font so you can use it. You still have to set that font in your css in order to actually use it. So when you put font-family: 'Nunito', sans-serif; You're simply saying that you would like the browser to use the 'Nunito' font as a first choice but if that's not available for some reason (the browser might not support web fonts or there was a problem loading) then fallback to the default sans-serif font on the user's computer.