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

Ilie Stefan
Ilie Stefan
1,158 Points

Can't pass this challange but I've tried everything

I've tried:

<ul><li><a href="#portofolio">Portofolio</a></li></ul>

<h1 id="portofolio"> My portofolio </h1>

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

1 Answer

Steven Parker
Steven Parker
229,788 Points

You're really close. But you have "#portofolio" (with 4 "o"s) and it should be "#portfolio" (just 3 "o"s).

Ilie Stefan
Ilie Stefan
1,158 Points

Omg, that's so funny! Thank you so much, man! I was stuck on that for like an hour and I've tried literally everything but checking out to see if I wrote it correctly. #portofolio