Have I Mentioned That The HTML5 DOCTYPE Makes Me Smile?

It does.

Why?

Well, I’ve been doing this job, at a very high level, for a long time and I couldn’t code this by hand if you paid me $50,000:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

I understand it, and I can’t remember it. That’s basically gibberish to most people. There’s no way anyone is going to remember that string.

This? This I can code by hand and pretty much anyone can “get” what it’s doing:

<!DOCTYPE html >  

I do wonder if there’s been any backlash against that? I’ve seen a lot of backlash against HTML5 over the past year, but I can’t really remember anyone complaining about the doctype declaration.

I bet someone hates it.

Not me 🙂

2 thoughts on “Have I Mentioned That The HTML5 DOCTYPE Makes Me Smile?

  1. You’ve always been able to do that – look at Google’s doctype. The only downside is that you cannot validate your doctype when you don’t include it in the head. And, since there is no validator for HTML5 *yet* you don’t have anything to add. So, it’s sort of a new discovery for most to achieve something that’s always been available.

  2. Good points. I was really just admiring the choice in context of the specification as a specification. I think the simple doctype is good. I have similar thoughts about many of the features brought in from the cold (innerHTML springs to mind.)

    I’m using the doctype now and, through modernizr, some of the new semantic markup elements but it’s not quite what it will be in the future when everything surrounding the new standard is in place.

Leave a Reply

Your email address will not be published. Required fields are marked *