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

Why does Nick.jpg work on my about page but when I try a different pictures it doesnt work for me.

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bare Farah | Coding</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Bare Farah</h1> <h2>Coding</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="About.html"class="selected">About</a></li> <li><a href="Contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <img src="img/nick.jpg" alt="photograph of anime characters"class="profile-photo"> <h3>About</h3> <p>HI! my name is Bare Farah this is my cording portfolio where I share my favoured work.When i'm not working I like to play football with my friends and enjoy playing video games and watching movies/tv shows. </p> <p>If you like to fellow me on twitter my use name is <a href="http://twitter.com/barry_farah"> @barry_farah</a>.</p> </section> <footer> <a href="http://twitter.com/barry_farah"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="http://facebook.com/barry farah"><img src="img/facebook-wrap.png" alt="FaceBook Logo" class="social-icon"></a> <p>Ā© 2015 Bare Farah.</p> </footer> </div> </body> </html>

example : when i change the img/to different image it doesnt work for me

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bare Farah | Coding</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Bare Farah</h1> <h2>Coding</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="About.html"class="selected">About</a></li> <li><a href="Contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <img src="img/picc.jpg" alt="photograph of anime characters"class="profile-photo"> <h3>About</h3> <p>HI! my name is Bare Farah this is my cording portfolio where I share my favoured work.When i'm not working I like to play football with my friends and enjoy playing video games and watching movies/tv shows. </p> <p>If you like to fellow me on twitter my use name is <a href="http://twitter.com/barry_farah"> @barry_farah</a>.</p> </section> <footer> <a href="http://twitter.com/barry_farah"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="http://facebook.com/barry farah"><img src="img/facebook-wrap.png" alt="FaceBook Logo" class="social-icon"></a> <p>Ā© 2015 Bare Farah.</p> </footer> </div> </body>

4 Answers

Andi Wilkinson
Andi Wilkinson
26,822 Points

is your image in the img folder? and have you typed in the correct name?

thank you.

pi R
pi R
12,720 Points

Hi ! You should check that :

  1. Your image is correctly placed in the "img" folder.
  2. The name of your image is correct.
  3. If it still doesn't work, upload it again.
  4. If you still have a problem, take a snapshot so we can look at your project.

Thank you I forgot to put the img in the img folder damm feel like dumbass. lol

Andi Wilkinson
Andi Wilkinson
26,822 Points

its always the simplest things!

NealRoyal.jpg