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

What is a Header tag

I have <header></header> in the stanza but it request that I not forget a header tag. I'm bit confused as to what this is

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

2 Answers

Mayur Pande
PLUS
Mayur Pande
Courses Plus Student 11,711 Points

The header tag is used as a container for navigation elements. So for example if you have a website with a menu across the top bar the contents of this would be stored within the nav element and this would be stored within the header element. You do not necessarily need it, but it is good for clarity I think.

Apologies, meant to take this down. I found my mistake.

Hi :)

It seems you have a couple little errors in there that could be causing the problem.

  1. The meta tag in the head element should always come before the title tag.
  2. inside the meta tag there is an error on the quotation marks surrounding the charset.

Below is a copy of the code that will complete the challenge for your to refer to :)

<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8"/>
    <title></title>
  </head>

  <body>
    <header></header>
    <section></section>
    <footer></footer>
  </body>

</html>

Hope this helps Craig