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 trialAlexander Matte
406 PointsSet up your HTML document with the <!doctype> and <html> tags. Question
I answered as following:
<!DOCTYPE.html> <html> </html>
I get a message saying, "Bummer: Your DOCTYPE should be "html" (without quotes).
I am not understanding what is wrong here...
Adam N
70,280 Pointseslam said Maybe you should log into his account and do the course for him.
2 Answers
Adam N
70,280 PointsThat error message isn't helpful, but your code is not correct. A more appropriate error would be:
unknown declaration type "DOCTYPE.HTML"
Let me know if this helps here
Gokce Demiral
14,823 PointsThis should do:
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<p>You were mistaken on HTML doctype declaration. Musts for the html tags are head and body. Just like a human. Hope this helps. Best...</p>
</body>
</html>
eslam said
Courses Plus Student 6,734 Pointseslam said
Courses Plus Student 6,734 Pointsthe way you setup your html document should look like so
<!DOCTYPE.html> is wrong it has to be <!DOCTYPE html>