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 Introduction to HTML and CSS (2016) Adding a New Web Page Write the CSS

C. Vincent Plummer
C. Vincent Plummer
4,144 Points

I'm unable to see the preview of the resume.html. The preview on workspaces keeps defaulting to the entire site.

How do I preview the work we just did?

Dan Brain
Dan Brain
769 Points

Hey Vincent, I noticed the same. As a workaround, I made one of the links within index.html, for example, "Experience" point to resume.html, like this:

<div class="main-nav">
        <ul class="nav">
          <li class="name">Jane Smith</li>
          <li><a href="#">Home</a></li>
          <li><a href="resume.html">Experience</a></li>
          <li><a href="#">Photos</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
    </div>

Then you just click the Experience link once the site preview loads. There's probably a better way, but for now this works

Bryan Kristianto
Bryan Kristianto
3,442 Points

Have you added your "resume.html" to the site

1 Answer

Liam Ferb
Liam Ferb
8,454 Points

Just press preview and append /resume.html to the link and it should work fine.