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

Travis G
Travis G
8,384 Points

I have all the elements that the quiz is suppose to give me. Either I'm wrong or it isn't seeing it. How can I move on?

It's asking for a header, footer, and section elements and they are there. Why isn't your program seeing them?

index.html
<!DOCTYPE html>
<html>
  <head>
    <title></tile>
    <meta> charset="utf-8"</meta>
  </head>
<body>
  <header></header
  <section> </section>
  <footer> </footer>
 </body>
  </html>

1 Answer

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

It looks like there are a couple typos that could be causing this issue.

First, on your closing title tag, you have it spelled 'tile'.

Second, the meta tag is a self-closing tag, so you don't need the closing tag. And the charset should be within the meta tag (see below).

Third, your header tag doesn't have a closing >. Fix these issues, and you should be good to go.

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