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 HTML Basics Getting Started with HTML Global Structure of an HTML Document

Heather Redetzke
Heather Redetzke
4,826 Points

<!DOCTYPE html5> Why not start an html document by calling it out as html5 specifically since that's what we're using?

I know in some future point we'll be using html 6 & 8, but since we're writing code with assumptions now about how the rules will affect the code, all of which are specific to html5... why isn't it better practice to name our docs with that in mind?

1 Answer

Hey Heather,

With HTML5, the declaration is simply <!DOCTYPE html>. There's no need to specify the version of HTML.

Other versions of the DOCTYPE can be viewed here.