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 Introduction to HTML and CSS CSS Fundamentals CSS Properties

zakariya mustafe
zakariya mustafe
60 Points

Background color

after making all necessary changes step by step, my home page has only changed color and my second web page linking me to carbonara has stayed the same .

Steven Parker
Steven Parker
230,946 Points

Take a look at this video about sharing a snapshot of your workspace. The snapshot will allow us to replicate your issue and look into a solution.

2 Answers

Steven Parker
Steven Parker
230,946 Points

zakariya mustafe — Normally, "best answer" would be the the one that contained the info that helped resolve your issue! :see_no_evil:
(you can change that now)

Steven Parker
Steven Parker
230,946 Points

The CSS is not being used because of two syntax/spelling errors in carbonara.html:

    <link rel"stylesheet" href="syles.css" />
  1. there should be an equal sign after the keyword "rel"
  2. the name of the CSS file should be "styles.css" (with a "t")

The CSS file also has a syntax error:

  background-color:: black;
  • there should only be one colon between the property and the value