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

example images

the example images are still in place when I preview the website from workspace. I deleted all the code from the example images and replaced them with my images. when you first switch over to preview the webpage the example numbers (1,2,6,9,12) are still there. when you hit the tab in the webpage for "portfolio" my images are there. However in my code, there I have deleted all info related to the example images

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Wyatt Lamond | DJ and Producer</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Wyatt Lamond</h1>
        <h2>Dj and Producer</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/djphoto1.jpg">
            <img src="img/djphoto1.jpg" alt="">
            <p>All up in it.</p>
          </a>
        </li>
        <li>
          <a href="img/djphoto2.jpg">
            <img src="img/djphoto2.jpg" alt="">
            <p>Focus and Determination creates the mix.</p>
          </a>
        </li>
        <li>
          <a href="img/djphoto3.jpg">
            <img src="img/djphoto3.jpg" alt="">
            <p>Give thanks and praise.</p>
          </a>
        </li>
      </ul>
    </section>
    <footer>
       <p>&copy; 2014 Wyatt Lamond.</p>
    </footer>
 </body>
</html>

1 Answer

Hi Wyatt,

Just to confirm, you should only have 1x page titled index.html which will act as both your home & portfolio page for the test website.

Your code above looks correct, so it might be a browser cache issue you are experiencing. Clear your browser's cache and take another look to see if the problem still persists.

Also, Workspaces seems to be down at the moment, so that might be another factor.. Nick Pettit - is anybody looking into this?

Nick Pettit
Nick Pettit
Treehouse Teacher

Hi Sam and Wyatt,

I'm not aware of any caching issues with Workspaces, but I'll pass it along to the Workspaces team so that can look into it.