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 trial

HTML Introduction to HTML and CSS (2016) Adding a New Web Page Test: Write and Style an Element

Alexander Matte
Alexander Matte
406 Points

Set 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...

eslam said
eslam said
Courses Plus Student 6,734 Points

the way you setup your html document should look like so

   <!DOCTYPE html>
   <html>

  </html>

<!DOCTYPE.html> is wrong it has to be <!DOCTYPE html>

eslam said Maybe you should log into his account and do the course for him.

2 Answers

That 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

This 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>