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 How to Make a Website HTML First Use HTML Elements

What is a HTML doctype tag?

I have started my page with <1DOCTYPE html> but getting a message that I have not defined my html doctype tag. I don't know what this means.

2 Answers

Sreng Hong
Sreng Hong
15,083 Points

It asked you to specific the version of html you want to use.

In this challenge, it uses a html 5, so you have to declare it like this:

<!DOCTYPE html>

The <!DOCTYPE> declaration must be the very first thing in your HTML document, before the html tag and it also help your browser knows what type of document to expect.

James Barnett
James Barnett
39,199 Points

Check out the build structure video around the 1 minute mark.