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 trialKwazi Nolela
7,708 PointsI am not getting any photo image for my resume
<!DOCTYPE html> <html> <head> <title>Kwazi Ndlela Resume</title> </head> <body> <img scr="http://placeimg.com/200/200/any" alt="Kwazi Ndlela,Front End Developer"> <h1> Kwazi Ndlela, Front End Developer</h1> <h2>Summary of Qualifications</h2> <ul> <li>Expereince of Web Development</li> <li>HTML,CSS,JAVASCRIPT</li> <li>BA.Economics</li> </ul> </body> </html>
3 Answers
Renee Rosquites
5,837 PointsFor the src, make sure you put the entire URL. So <img src="http://placeimg.com/200/200/any" alt="image of headphones">
Otherwise, the browser is going to be searching for a folder named "placeimg.com" in your source files.
Ikuyasu Usui
36 PointsYou mistyped: not 'scr' but 'src'.
Kwazi Nolela
7,708 PointsThank you so much Renee.
Carlos Irias romero
Courses Plus Student 695 PointsThank you Renee. I had the same problem lol.
STEVEN PENA
13,928 Pointsam stuck in the same problem
<!DOCTYPE html> <html> <head> <title>Steven Pena resume</title> </head> <body> <img src="placeimg.com/200/200/any" alt="image of headphones"> <h1>Steven Pena Web Developer</h1> <h2>Sammary of Qualification</h2> <ul> <li>Experience in Swift language</li> <li>Experience in web development</li> <li>Experience in javascript, css, html and php</li> </ul> </body> </html>
Renee Rosquites
5,837 PointsRenee Rosquites
5,837 Points<!DOCTYPE html> <html> <head> <title>Kwazi Ndlela Resume</title> </head> <body> <img scr="http://placeimg.com/200/200/any" alt="Kwazi Ndlela,Front End Developer"> <h1> Kwazi Ndlela, Front End Developer</h1> <h2>Summary of Qualifications</h2> <ul> <li>Expereince of Web Development</li> <li>HTML,CSS,JAVASCRIPT</li> <li>BA.Economics</li> </ul> </body> </html>
Should be <img src="..."> not <img scr="...">