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 Structuring Your Content Structuring Content Challenge

Patricia Jackson
seal-mask
.a{fill-rule:evenodd;}techdegree
Patricia Jackson
Front End Web Development Techdegree Student 9,165 Points

My name is Patricia and I'm stuck on the 1st challenge task in the HTML Basics after the lesson on Sectioning content.

As I view the code in the challenge, I'm finding it confusing, perhaps it's the instructions, I'm not sure. I just beginning to learn and I don't to feel as though I've come this far to fail now. I realize this will be challenging and I'm ready for it, I just need a small push over this hurtle. Thank you in advance for your help and patience.

index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
    <h1>My Portfolio</h1>
  </head>
  <body>
    <ul> 
      <li><a href="#">About</a></li>
      <li><a href="#">Work</a></li>
      <li><a href="#">Contact</a></li>            
    </ul>
    <p>My Web Design &amp; Development Portfolio!</p> 
    <p>A site featuring my latest work.</p>

    <h2>Welcome</h2> 
    <p>Fusce semper id ipsum sed scelerisque. Etiam nec elementum massa. Pellentesque tristique ex ac ipsum hendrerit, eget feugiat ante faucibus.</p>
    <ul>
      <li><a href="#">Recent project #1</a></li>
      <li><a href="#">Recent project #2</a></li>
      <li><a href="#">Recent project #3</a></li>     
    </ul>

    <p>&copy; 2017 My Portfolio</p>
    <p>Follow me on <a href="#">Twitter</a>, <a href="#">Instagram</a> and <a href="#">Dribbble</a></p>
  </body>
</html>

2 Answers

Jerry Hoover
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jerry Hoover
Full Stack JavaScript Techdegree Graduate 25,815 Points

It appears it wants you to wrap <header> tags around this bit

<ul> <li><a href="#">About</a></li> <li><a href="#">Work</a></li> <li><a href="#">Contact</a></li>
</ul> <p>My Web Design & Development Portfolio!</p> <p>A site featuring my latest work.</p>

And then, "My Web Design & Development Portfolio!" should be wrapped in <h1> instead of <p>

Patricia Jackson
seal-mask
.a{fill-rule:evenodd;}techdegree
Patricia Jackson
Front End Web Development Techdegree Student 9,165 Points

Thank you so much Jerry for your response. It would appear that is the case. After a night's rest, it's definitely clearer to me today! Again, thank you for your help. I truly appreciate it.