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 HTML Basics Going Further with HTML Links and Paths Challenge

Can someone please explain what exactly am I doing wrong on Task 3

I can't seem to figure out how to properly set the portfolio path properly?

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>Portfolio Page</title>
    <a href="/#portfolio">...</a>
      <div id="portfolio">...</div>
  </head>
  <body>
    <img src="../img/logo.png" alt="Site logo">
    <ul>
      <a href="/index.html">...</a>
      <div id="/index.html">...</div>            
    </ul>
  </body>
</html>

2 Answers

Ronald Greer
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Ronald Greer
Front End Web Development Techdegree Graduate 56,430 Points

You're off to a good start so far, Michael! however to assign the link to an id, you need to have a # sign in front of the id in the attribute. Here's an example:

<a href="#portfolio" > Portfolio </a>

<h2 id="portfolio"> Portfolio </h2>

hope this helps!

Thanks! The problem was I accidently added a '/' before the #portfolio.

<a href="#portfolio" > Portfolio </a>

<h2 id="portfolio"> Portfolio </h2>