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

Pearly Paul
seal-mask
.a{fill-rule:evenodd;}techdegree
Pearly Paul
Full Stack JavaScript Techdegree Student 529 Points

I dont understand the question

Which element .Question is not cleaar

index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
    <title>My Portfolio</title>
  </head>
  <body>
    <ul>
      <li><a href="#">About</a></li>
      <li><a href="#">Work</a></li>
      <li><a href="#">Contact</a></li>            
    </ul>
    <h1>My Web Design &amp; Development Portfolio!</h1> 
    <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>

Which question are you stuck on? The code challenge that you're linked to asks you to place the appropriate tags around elements to structure the page correctly.

Taylor Han
Taylor Han
3,701 Points

Hi Pearly,

This challenge is asking you to place the ul, p and h1 tags in an element that specifies introductory content, which is the <header> element.

So you will first need to put an opening header tag <header> just inside the body above the first ul, and a closing header tag </header> just after the first p tag, the one that says "a site featuring my latest work"

Hope this helps!

2 Answers

Place the ul, h1 and p elements at the top of the page inside an element that represents a group of introductory content....

Hiro Egashira
Hiro Egashira
8,557 Points

Hi Pearly Paul,

I'm not sure which question you are referring to so here are all 4...

For this challenge (1 to 4) you will need the <header>, <footer>, <section>, and <nav> tags. With these inserted, it will be easier for anyone to see how the page is structured and help with accessibility which is another course here.

  1. The <ul>, <h1>, and <p> tags at the top of the body make up the header of the page which you can see if you preview the workspace.

  2. At the bottom, there are a couple of paragraph tags with copyright info and social media links. These are typically items you would find in the footer.

  3. Everything in between is a content section. As the page develops, the author would continue to add additional sections as they add more content.

  4. Up in the header, that list is the main navigation and will need tags to declare that.

I hope that helps. Let us know if you get it figured out of need more help!