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

Gives me an error on pics , says 404 not found , what have I done wrong ?

i m only doing the first steps of the html course , there shouldn t be any mistake on the code , i can see on the preview the ripped pic , but than i can t see the actual photo i m trying to show on the page , and clicking on it it says 404 error not found

Mark Casavantes
Mark Casavantes
Courses Plus Student 13,401 Points

Hi Enrico,

Post your code so we can have a look at it.

Copy and paste your code into the comments. Use before your code and at the end of your code. Review the Markdown Cheatsheet just below to learn more about formatting your post.

I remember when I did not know how to post my code. Maybe Treehouse should have a short video going through this process when you first begin.

3 Answers

Hey Enrico!

Please could you post your code for me to take a look at?

Thank you and I hope you are having a good day!

-Luke

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Enrico | Designer</title> <link rel="stylesheet" href="css/normalize.css"> </head> <body> <header> <a href="index.html"> <h1>Enrico </h1> <h2>Designer</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>Experimentation with color and texture.</p> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <p>Playing with blending modes on Photoshop.</p> </a> </li><li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <p>Trying to create an 80's style of glows.</p> </a> </li><li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <p>Drips created using Photoshop brushes.</p> </a> </li><li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <p>Creating shapes using repetition..</p> </a> </li> </ul>
</section> <footer> <a href="https://www.facebook.com/orso.10"><img src="img/facebook-wrap.png" alt"Facebook Logo"></a> <p>© 2015 Enrico .</p> </footer> </body> </html>

thanks to you all guys

Mark Casavantes
PLUS
Mark Casavantes
Courses Plus Student 13,401 Points

Good Morning Enrico,

I think the problem is not with your code, but that the browser cannot find your pictures. Try using a picture you know you have on your computer in your code to see if it displays. If that is the case then save the pictures you are using in the same file.

Check out this link on this topic and see if it is helpful to you http://www.pagetutor.com/html_tutor/missing.html