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 How to Make a Website Creating HTML Content Create Navigation with Lists

Desiree Lauterbach
seal-mask
.a{fill-rule:evenodd;}techdegree
Desiree Lauterbach
Front End Web Development Techdegree Student 1,053 Points

Every time on Challenge 3 of 3 the screen will not let me do the challenge as can't click screen. NO error, stuck.

I keep redoing this challenge. Same result each time. It says to add the hyperlinks to the UL LI and I cannot because I lose ability to click the code page so I can't enter any code to do the 3rd part of the challenge. All other items on page seem to work so I can navigate back or out of the program. I just can't complete challenge so I can move along in my program.

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
        <nav>
          <ul>
            <li>Portfolio</li>
            <li>About</li>
            <li>Contact</li>
          </ul>
        </nav>
    </header>
    <section></section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>
Simon Coates
Simon Coates
28,694 Points

The obvious things to try are trying again, trying a different browser, clearing the cache (i prefer not to do this as i've always been anxious about losing other stuff in cache). If it continues to happen, then take a screenshot and email help. (fyi, it's not a general error, task 3 works for other people).

1 Answer