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

Design

how 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

I 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
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

From what I can tell it's all legit. Can you link to a screen shot of the workspace?

yes

this 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.

Right

jason chan
jason chan
31,009 Points

rename 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.

Where are your html, head, and body tags?