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 HTML First Use HTML Elements

I think this might be slightly bugged. I added the elements in between the body tags, but it still gives me an error.

Though, I don't really need this particular guide, I'm just doing the exercises to see if I'm missing out on anything (I'm likely to be missing out on some parts).

However, the code is attached to this post. Assuming that is the way it was meant to be.

index.html
<!DOCTYPE html>
<html>
  <head>
      <title>Wrixli - Home</title>
      <meta charset="UTF-8">
  </head>
  <body>
    <header></header>
    <footer></footer>
  </body>
</html>

Everything looks good, but I think you are missing the Section Element.

<!DOCTYPE html>
<html>
  <head>
    <title></title>
    <meta charset="UTF-8">
  </head>
  <body>
    <header></header>
    <section></section>
    <footer></footer>
  </body>
</html>

2 Answers

Greg Kaleka
Greg Kaleka
39,021 Points

Your code looks good - you're just missing the section element the challenge asks for!

Yeah, I figured haha. My bad. If I watched the course, I'd probably know.

Thanks for your reply!