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 trialAnthony Costanza
2,123 PointsBummer! Make sure you define the HTML tag for the document root.
Please help - I dont see whats wrong
<!DOCTYPE HTML>
<HTML>
<head>
<meta charset="utf-8">
<title>Anthonys Project | Designer<title/>
</head>
Gunhoo Yoon
5,027 PointsJust need to close with </html>. Doesn't matter if you do </HTML> but it's better to be consistent
Anthony Costanza
2,123 PointsThank you all!! I just sunk my teeth into this programming stuff and trying to come up to speed - its great to know theres such a strong community out there for support!! Thanx again!!!
1 Answer
Hannah Gaskins
14,572 PointsHey Anthony,
The code needs a closing HTML tag as well as the correct title closing tag. Here is code that should work:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Anthonys Project | Designer</title>
</head>
</html>
Let me know how this goes for you!
Cheers :)
Ralph Brzozowski
Courses Plus Student 1,288 PointsRalph Brzozowski
Courses Plus Student 1,288 PointsClosing HTML Tag
</Html>