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

General Discussion

Help!!

I have posted the coding below which I am struggling with when viewed live. The <nav> section does not show (index, about, contact) nor does my last name in the title... which I have already addressed however am still awaiting an answer back. I'm soo confused & I know there is an easy way to remedy this... Any help would be much appreciated!

<!DOCTYPE html> <html> <head> <meta charset= "utf-8"> <title>Jackie Henry | Designer</title> </head> <body> <header> <a href="index.html"> <h1>Jackie Henry</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html"></a></>Portfolio<a></a></li> <li><a href="about.html"></a></a>About</li> <li><a href="contact.html"Contact</a></li> </ul> </nav> </header> <section> <p>Gallery will go here.</p> </section> <footer> <p>Ā© 2014 Jackie Henry.</p> </footer> </body> </html>

Geoffrey Powell
Geoffrey Powell
15,358 Points

Hi Jacqueline, What exactly are you working on? Are you having trouble setting up your files, linking your files, writing HTML, or something else?

3 Answers

Bill Hinostroza
Bill Hinostroza
19,273 Points

Your code should look something like this.

<!doctype html>
<html>
<head>
 <title>Jackie Henry | Designer Jackie Henry Designer</title>
</head>
<body>
<nav>
 <ul>
<li><a href="">Portfolio</a></li>
<li><a href="">About</a></li>
<li><a href="">Gallery</a></li>
</ul>
</nav>
</body>
</html>

I would suggest to review the HTML5 (https://teamtreehouse.com/library/html) course if you haven't done so already because that will cover the problem you're having here.

Dov Breuer
Dov Breuer
8,268 Points
<!DOCTYPE html>
<html>
  <head>
    <title>Jackie Henry | Designer Jackie Henry Designer</title> 
  </head>
<body> 
  <nav> 
    <ul> 
      <li><a href="">Portfolio</a></li>
      <li><a href="">About</a></li>
      <li><a href="">Gallery</a></li>
    </ul>
  </nav> 
</body> 
</html>

Thank you to the both of you! I will see if this will help & get back with you either way.

Happy 4th!!