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 How to Make a Website CSS: Cascading Style Sheets What is CSS?

Rwanda Muhammad
seal-mask
.a{fill-rule:evenodd;}techdegree
Rwanda Muhammad
Full Stack JavaScript Techdegree Student 4,116 Points

When I try to do this assignment the color text and background color does not show.

Instead when I click to view the web page it reads {color: white; back-ground: orange;} at the botton of the footer

1 Answer

Erik Nuber
Erik Nuber
20,629 Points

The code should look like the following and be between the style tags on the html page

<style>
footer {
   color: white;
   background-color: orange;
}

</style>

your code isn't quite correct as you have back-ground. Also location of the css is important in this lesson as it is within the <style> tag. As you progress through the lessons, you will start using a separate file but, for now, just make sure of it's location.