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 trialRobyn McComb
553 PointsIt is asking me to add a meta tag to the head tag but I already added <mta charset="utf-8">. What do I do?
I get a "Bummer, add meta tag to head tag" when I check my code. I already did and it looks fine in the preview.
<!DOCTYPE html>
<html>
<head>
<mta charset="utf-8">
<title>Robyn McComb | Designer</title>
</head>
<body>
<header>
<h1>Robyn McComb</h1>
<h2>Designer</h2>
</header>
<section>
<p>Gallery Coming Soon.</p>
</section>
<footer>
<p>© 2015 Robyn McComb.</p>
</footer>
</body>
</html>
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Robyn,
You just have a typo... you are missing an 'e' in "meta".
Fix that and you're good to go. :)
Robyn McComb
553 PointsRobyn McComb
553 PointsThank you! It worked now!
Robyn McComb
553 PointsRobyn McComb
553 PointsThank you! It worked now!