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 trialMatthew Zepeda
691 PointsI'm adding header to my html document and its saying 'don't forget to add the header tag" which i did, help
please help. I'm obviously doing something wrong and not adding the header tag in the correct spot.
<!DOCTYPE html>
<html>
<head>
<meta charset="uft-8">
<title Matthew Zepeda | Designer.>
</head>
<body>
<header>
<h1> Matthew Zepeda </h1>
<h2> Designer </h2>
</header>
<section>
<p> The Gallery will go here. </p>
</section>
<footer>
<P> © Matthew Zepeda 2015</P>
</footer>
</body>
</html>
2 Answers
Brad L'estrange
2,085 PointsI can't see anything wrong with your header tag. But this is wrong.
<title Matthew Zepeda | Designer.>
Should be...
<title>Matthew Zepeda | Designer.</title>
Richard Nicholls
1,301 PointsI just copied and pasted your code into the challenge window and it passed it?
Brad L'estrange
2,085 PointsThey don't just check for the header they check if your code is correct. :)
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi Matthew,
The code that your wrote for task 6 is correct but it's this
title
tag problem that is throwing off the checker for task 6.