I noticed we're using the following doctype:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

Which leads to validation errors due to our placeholder and autocomplete attributes. Why aren't we using the HTML 5 doctype below?

<!DOCTYPE HTML>

This doctype activates standards modes in old browsers but is valid for the HTML5 markup the SE sites are in fact using right now.

link|improve this question

78% accept rate
4  
News flash: tag soup is and will always be tag soup. – BoltClock's a Unicorn Dec 11 '11 at 4:39
feedback

1 Answer

up vote 7 down vote accepted

I don't know when we changed this, but View Source and you'll plainly see we now have

<!DOCTYPE html>

On all SE 2.0 sites.

link|improve this answer
7  
Good, now you don't have to drive to Jeff's house and beat him to death with a giant 5! – The Unhandled Exception Feb 2 at 22:35
I always love re-reading that tweet. – darvids0n Feb 3 at 3:52
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged