vote up 3 vote down star
3

So HTML 5 has been widely publicised as expected to be ready in 2022. This is a long time to wait, and the test for that readiness is that "at least two browsers to completely pass [HTML 5 test suites]"

Obviously for browsers to pass this test they have to start implementing usable HTML 5 features before that. The list of new HTML5 features supported is looking thin at the moment. But there are a couple of significant changes to existing elements such as allowing A tags to surround block level that could be very useful now.

There are sites that are using HTML 5 now, so what are the factors that will make you start, or keep you from, building sites with an HTML 5 doctype?

Myself, I'm toying with HTML5 in a couple of personal sites, but will wait a while for work sites until things like a reliable validator appear.

flag
4  
When 95%+ of used browsers supports it. – Daniel Sep 14 at 0:18
Can it not be argued that all current browsers support HTML5? But just not all of it yet. The Google homepage uses the HTML doctype for instance. – edeverett Sep 14 at 10:47

6 Answers

vote up 10 vote down check

It helps to divide this question into several parts.

1) When should one start using the HTML5 doctype?

The HTML5 doctype causes browsers to render pages in Full Standards mode. Unless you're currently using a strict doctype, pages may display differently. So you'll need to weigh up the amount of rework required if you're converting a existing site, and you'll need to understand the difference in rendering behaviour. Secondly, the doctype will cause the w3c validator to select HTML5 as the default language to validate against. Given that HTML5 is still in draft, this means aiming at a moving target. Is validity important to you? Some features that are valid in HTML4 are not currently valid in HTML5. Should you change your markup now to remove those features, given that HTML5 may change to make those features valid again? Provided you're comfortable with this, you can start using the HTML5 doctype now.

On the other hand, on it's own, what are you gaining? If you want browsers to render in Full Standards mode, you can use a strict doctype from HTML 4.01 or XHTML 1.x. Do you need HTML5 validation given that it will pass things that may not at present be handled consistently across browsers? Be aware that any HTML5 feature that currently works in browsers, works regardless of whether you use the HTML5 doctype or not.

2) When should one start using features that are currently interoperably implemented in the major browsers, but standardised for the first time in HTML5?

You can use these now, but try to make sure that your pages are properly accessible. Canvas, for example, does not provide good support for non-sighted users.

3) When should one start using features that are current implemented in some browsers, and will be standardised by HTML5?

This depends on your target users and delivery schedules. Will your users be using a browser that supports these features by the time your site goes live? What happens if they don't? Does the page fall back gracefully? Do you care if some users can't use your site?

4) When should one start using features of HTML5 that are not implemented at all yet?

Why would you want to do that? It might be reasonable for training purposes or investigating fall back behaviour, but HTML5 is still in draft form, and it's quite possible that some features will never be implemented, or will be implemented in a totally different way to that currently described, so you could waste a lot of effort.

Summarising, what matters is not so much what's in the HTML5 draft, as what is practically usable today. The draft describes a range of features, some of which have been in browsers for years, some which are new but have support or good fall back behaviour, and some which are not currently and may never be usable.

For me, I'll be holding off until I need an HTML5 feature, and I know that that feature is implemented in a consistent and stable way across the major browsers. That will probably happen some time during HTML5's Last Call phase, or possibly during the Candidate Recommendation phase.

link|flag
vote up 2 vote down

Already have started using it for personal and client work.

For validation I use Henri Sivonen's excellent http://validator.nu/

link|flag
1  
What were the advantages that made you start using it? Have you found any downsides? – edeverett Sep 13 at 21:34
vote up 2 vote down

When IE supports it. I work in the corporate world, and IE is required.

link|flag
vote up 0 vote down

I use the doctype now! (for some projects at least)

As for the features, things like <canvas> and <video> are cool and useful now because there are often ways to make the content available for users whose browsers don't support HTML5 yet.

Semantic page structure tags like <sidebar> and the lot don't seem very urgent to me. I'll let those sit for another year or two.

link|flag
Your code didn't show up... – SeanJA Sep 14 at 3:04
Ha! I hadn't even noticed. Thanks! – Gabriel Hurley Sep 14 at 5:47
vote up -6 vote down

NEVER!

HTML 5 solves no problem associated with the web, but introduces new potential problems.

Current problems with the web - The Big Three:

1) Security. 95+% of ALL reported security vulnerabilities are the result of client side scripting. This includes: JavaScript, ActiveX, Flash, Silverlight, Acrobat, and other client side code whether it is interpreted or locked into a plug in. HTML 5 could do at least something to eliminate some of these vulnerabilities, such as introduce limitations upon iframe, which is where many of the non-plugin problems come from.

2) Accessibility. While security is certainly the biggest problem with the web there is only so much changes to HTML can do to solve that problem. Accessibility, however, is mostly a markup problem and changes to HTML can make an incredible difference to eliminate common accessibility problems. HTML 5 does nothing to advance accessibility.

3) Uniformity/formalization. The SGML form of HTML has always been sloppy, and browsers allow even greater sloppiness. The result is a complete mess. An application created to output HTML often produces HTML that is completely non-portable to other applications or other environments. HTML 5 does nothing to reduce this problem.

If changes to HTML 5 do not solve the important problems with the web then it is useless. It is my opinion that HTML 5 is created for usability, and nothing else. Usability is the intent of an application and not the intent of a markup language. When objectives foreign to a technology become more important than the technology itself the technology is a failure. As a result I believe if HTML 5 is the future of the web than the prior described problems will cause the web to fail. Its only a matter of time before standing problems produce a cost of doing business online that exceeds the return on investment. When that occurs failure is immediate.

As a result I strongly advise that you never adopt HTML 5.

link|flag
+1 Well said that human, especially point 2. You may want to review the wording (of point 2) though - if I had sufficient points I'd do it for you. – da5id Sep 14 at 3:08
4  
"HTML 5 does nothing to reduce this problem." This is completely wrong. HTML5 defines how HTML must be handled, exactly to improve portability. – ms2ger Sep 14 at 8:44
@ms2ger HTML5 does less to improve uniformity and portability than XHTML 1.0. That is not a success. – austin cheney Sep 14 at 16:34
-1 for the rambling uninformed rant. – Triptych Sep 14 at 16:35
@Triptych It is a rant, but it is informed and on subject. Why spend the time and money to adopt a technology that imposes changes without solving relevant problems? I provided technical reasons why not to adopt it. – austin cheney Sep 14 at 17:03
show 3 more comments
vote up 0 vote down

When my google analytics statistics in all my websites shows that at least 90% of my users are using HTML5 capable browsers/devices.

Until them, HTML5 is just a buzzword.

link|flag
1  
How will you decide when a particular browser supports HTML5? All current browsers have some level of support now as most of HTML5 is backwards compatible - or the same as - with HTML4. – edeverett Sep 14 at 10:51
We have lots of legacy code to adapt. If we can't use HTML5 new features, I see no reason to start adapating it yet. 75% of some users in some of out systems use ie 6.0. This compatibility table quirksmode.org/dom/html5.html (that I know isn't complete) shows some of them. Like Alohci said in the post, "For me, I'll be holding off until I need an HTML5 feature, and I know that that feature is implemented in a consistent and stable way across the major browsers.". I think it summarizes it. – GmonC Sep 14 at 12:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.