I'm overhauling my blog and … is HTML5 OK?
blogs, css, doctype, html
Solution
You can safely use the HTML5 doctype `<!doctype html>` and it will just render as HTML strict on most browsers, including IE6. Only caveat is that the new HTML5 elements (i.e. `header`, `footer`, `input type="number"`, etc) isn't directly supported by all browsers, including the current versions.
Problem
I'm overhauling my blog (http://gilesvangruisen.com/) and I'm going to be pushing new technologies as much as possible. I'm a web designer/developer and the browser percentage is as follows: 42% Firefox 39% Safari 7% Chrome 7% IE Is it OK to use the HTML5 doctype for my "rethunk" site? I thank you. -Giles :)