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 trialJordan Hayes
Courses Plus Student 460 PointsIt is saying that i have not created a meta tag for my html document.... though I have
Could anyone check my code and let me know if it is wrong
<!Doctype html>
<html>
<head>
<meta charset="utf-8"
<title> Billy Maze | wtfyn </title>
</head>
<body>
<header>
<h1> Billy Maze </h1>
<h2> WTFYN in life </h2>
</header>
<section>
<p> Galler goes here </p>
</section>
<footer>© 2018 America fuck yeah Billy fuckin maze here bitch </footer>
</body>
</html>
2 Answers
Stuart Wright
41,120 PointsYou are just missing a > at the end of your meta tag. All tags need to open with a < and end with a >.
<meta charset="utf-8">
Jordan Hayes
Courses Plus Student 460 PointsWow...... I'm a moron lol thankyou very much.
Jack Weldon
1,708 PointsIt's an easy mistake to overlook, opening and closing brackets will be the bane of your code.