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 trialHerschel Greenspan
890 PointsWhere did i go wrong in the making of this Program? How should it look when typed correctly?
Im having difficulty knowing where to place the title headers.
<!doctype html>
<html> <head> <meta charset="utf-8"> <title> Hershey Greenspan | Desighner </title> </head>
<body> </body> </html>
2 Answers
Jeff Lemay
14,268 PointsYour code looks correct except DOCTYPE should be all capitalized.
Herschel Greenspan
890 PointsBut everytime i try to submit my answer this error message pops up.
Bummer! A title element needs to appear between the <head> and </head> tags
Jeff Lemay
14,268 PointsOh, okay. It seems to be a problem with your formatting (you have html, head, meta, and title tags all on the same line). I was able to pass with your code when everything is put on its own line:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Hershey Greenspan | Desighner </title>
</head>
<body>
</body>
</html>