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 Adding Pages to a Website Add Iconography

Julia Assad
Julia Assad
9,014 Points

This is not a question about the video. It's just that at this point in the project, I wanted to add a background color

so in main.css I tried body{ font-family: 'Astloch', cursive; background-color: "#E6E6FA"; }

and I even tried in the index.html file with the following: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Julia Assad | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href="https://fonts.googleapis.com/css?family=Tangerine" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Astloch" rel="stylesheet"> <link rel="stylesheet" href="css/main.css"> </head> <body bgcolor="#E6E6FA">

Neither are working. Can someone tell me how come? Thank you!

1 Answer

Try getting rid of the double quotes ("") around your color value of #E6E6FA (in your CSS). Color values (in this case hexidecimal color values) aren't supposed to be wrapped in double quotes :)

~Alex