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 trialDerek Goodwin
7,758 Pointshow to make a website
I attempting to add pictures can someone please look at my coding my pictures will not preview in my workspace. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Derek Goodwin | Designer</title> </head> <body> <header> <a href="index.html"> <h1>Derek Goodwin</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/IMG_0174.JPG"> <img src="img/IMG_0174(1).JPG" alt=""> <p>Experimentation with color and texture</p> </a> </li> <li> <a href="img/IMG_0174.JPG"> <img src="img/IMG_0174(1).JPG" alt=""> <p>Experimentation with color and texture</p> </a> </li> <li> <a href="img/IMG_0174.JPG"> <img src="img/IMG_0174(1).JPG" alt=""> <p>Experimentation with color and texture</p> </a> </li> <li> <a href="img/IMG_0174.JPG"> <img src="img/IMG_0174(1).JPG" alt=""> <p>Experimentation with color and texture</p> </a> </li> <li> <a href="img/IMG_0174.JPG"> <img src="img/IMG_0174(1).JPG" alt=""> <p>Experimentation with color and texture</p> </a> </li> </ul> </section> <footer> <P>Ā© 2015 Derek Goodwin.</P> </footer> </body> </html>
8 Answers
Ron Horn
7,591 PointsI would check your file naming and file structure to start with simple debugging, and if you don't find your issue there you have at least eliminated the most basic causes of malfunctioning pages.
Cheers!
Caleb Kleveter
Treehouse Moderator 37,862 PointsFrom what I can tell it's all legit. Can you link to a screen shot of the workspace?
Derek Goodwin
7,758 Pointsyes
Derek Goodwin
7,758 Pointsthis is what I could copy below my images were not showing Derek Goodwin
Designer
Portfolio About Contact
Experimentation with color and texture
Experimentation with color and texture
Experimentation with color and texture
Experimentation with color and texture
Experimentation with color and texture
Ā© 2015 Derek Goodwin.
Caleb Kleveter
Treehouse Moderator 37,862 PointsAre the images just not showing up?
Derek Goodwin
7,758 PointsRight
jason chan
31,009 Pointsrename your picture without parenthesis
something.jpg
do not have spacing or weird characters. numbers underlines dashes and alphabet is fine. No weird language outside of English.
Justin Walters
PHP Development Techdegree Student 18,894 PointsWhere are your html, head, and body tags?