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

CSS How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

Rafael Flores
PLUS
Rafael Flores
Courses Plus Student 22,056 Points

main css is not being liked, Based on the previews I do not think is normalize either. Please help.

Here is my code: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Rafael Flores | Aerial Photography</title> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html"> <H1>Rafael Flores</H1> <h2>Aerial Photography</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>This is an Experimentation of color and texture</p> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <p>TPlaying with blending modes in photoshop</p> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <p>Trying to creaate and 80's look</p> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <p>Drips</p> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <p>Creatng repetition</p> </a> </li> </ul> </section> <footer> <a href="https://www.facebook.com/rafael.flores1"><img src="img/facebook-wrap.png" alt="Facebook logo"></a> <a href="https://www.twitter.com/raflores1"><img src="img/twitter-wrap.png" alt"Twitter logo"></a> <p>Ā© 2015 Rafael Flores.</p> </footer> </body> </html>

1 Answer

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Rafael,

It's most probably a file path error. Check to make sure that when you are looking at your index.html, you see a folder called css, and inside that folder your css file is named main.css and not Main.css or anything else.

Hope this helps.