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

'Bummer! The Portfolio list item should link to "index.html".' But yet it is and i have a photo!

I have a photo of my code that shows that I am doing PRECISELY what the exercise requires. Can I get an email address of a treehouse staffer to review this for me please???

Are you still stuck on the same exercise that you were asking for help for in the other thread that you left? PLEASE post your code in here so we can help you. Again, press the backtick button 3 times (the button directly to the left of the number 1), then spacebar, then write html next to it, then press Enter, then write your code how you would in a text edtior (<p>My Code</p>), then press Enter again, then press the backtick button 3 more times (the button directly to the left of the number 1), and then submit the question here to the forum. The MARKDOWN CHEATSHEET directly below the response box shows you how to post code to the forums. It's so super duper easy, David. Just do it so we can help you, instead of getting frustrated and e-mailing the staff, and waiting for a response, when you can get a response right here, right now...

Show the code bro, I already fix this problem in your last post

Look how ever-so-simple it is to post code...

<h1>Code In Forums</h1>
<p> Hey David, this is some code for you</p>

7 Answers

 <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</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>  

Henry, I implemented your solution exactly but the instructional software is still refusing to accept it.

You were correct, Henry. Thanks.

David,

This above solution that Henry posted works...

Try either updating out of date web browsers, switching browsers, or clearing your cache, or sometihng along those lines...

Make sure you are not missing back slashes in closing tags, make sure all tags are closed. make sure you are working in side the header tag. when you code you need to be very careful from the small mistakes, the computer will do exactly what you ask from it.

All very good points, but I believe the instruction software is jacked up.

The instruction software is not jacked up my friend. You are typing it wrong...

SHOW ME THE CODE ILL HELP YOU

I'm sure you could Henry but is yelling it necessary?

Your answer was quite correct, Lush. Thanks for all the help.

Woot! Finally!! Lol, glad we got you through it man...

I am on the same exercise, but I am on Question 3 (!!!) instead of Question 1 (!).

Ok, well show us the code, and we will get you past it!

i did all 3 questions if you dont show your code we cannot help you

Here is the error message: "Bummer! The Portfolio list item should link to "index.html". Here is the HTML:

```<header>```
```<a href="index.html">Portfolio</a>```
```<nav>```
```<ul>```
```<li href="/index.html">Portfolio</li>```
```<li href="/about.html">About</li>```
```<li href="/contact.html">Contact</li>```
```</ul>```
```</nav>```
```<h1>Nick Pettit</h1>```
```<h2>Designer</h2>```

There was some ambiguity in the exercise by already having an index.html at the header level.  The exercise asked for three li's in a ul for the student.

there is no href attribute for an li. it is for the a attribute

it has to be like

<li><a href=""></a></li>

the li does not have any attributes associated with it...

and unless otherwise noted (like if you need to go into another area of a project folder, for example), you do not need to use the backslash when entering your value into the href...

Lush, I implemented your solution with no success.

David,

You really need to post your code dude. You will not make it far here without learning how follow the instructions and how to utilize the forums properly.

No offense intended whatsoever, but you were blaming the software of Treehouse, when you had a "href" attribute associated with an "li" element. A "href" goes with the "a" element, which tells the anchor tag where to link to. All those "index.html" and "contact.html" belong in this:

<ul>
<li><a href="Contact.html">Contact</a></li>
</ul>

I am not trying to be rude or anything, but you are not helping us to help you. People here can help you, but you need to follow the instructions in order to get that help, rather than blame the software or want to e-mail the staff. Everything here works near flawlessly, as long as you have the correct syntax, and utilize the proper markup...