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 trialDavid Dehghani
6,992 PointsForgetting a header tag?
I am told that I don't have a header tag (<header></header>) when I do inside the body tags.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8'>
</head>
<body>
<header></header>
<section> </section>
<footer> </footer>
</body>
</html>
1 Answer
Owa Aquino
19,277 PointsHi David,
Your answer is actually correct, the only problem and why it's not passing because you're using two different quote type in your charset attribute. The best practice is to always use a double quote (") than the single quote (') on your HTML files.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web</title>
</head>
<body></body>
</html>
Hope this help! Cheers!
Owa