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
Jorge Vivanco
836 PointsTrouble with Images, and normalize.css
I am currently having this problem:
- My images are not appearing on the browser.
- How can I do the exercise of the normalize.css?
- How can I load that file on the code editor?
2 Answers
James Barnett
39,199 PointsThe most common issue for those new to web design, is an issue with file paths. So here's a quick primer on file paths that should get you going.
Also depending on your web server, the directories & filename that makes up your path may be case-sensitive. So triple check the spelling and capitalization of the the path.
In the code challenge you don't need to use normalize.css that's already taken care of for you.
On the other hand if you are following along with the project ...
How to add normalize.css:
- Go to normalize.css file from github
- Click the big green
downloadbutton - Save the file to your desktop
- Move the
normalize.cssfile in your sublime text project folder - Create a
linkelement that referencesnormalize.css
This works the same way as an <a> by using the href attribture. Make sure to use the right path for the normalize.css file here as well.
Steven Feeney
714 PointsThe code exercises only require you to type the text as it appears in the question.
If you click into the code editor directly the preloaded text should appear and once your HTML is typed it will be reflected on the right hand side.
Jorge Vivanco
836 PointsJorge Vivanco
836 Points@James your answer was really helpful, thank you so much for your time. It was super clear. Now, I can keep going.