Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know Where to find good resources to learn HTML 5, and know more about it, whats its pros and cons, and how to use it with asp.net for example?

do you recommend a book, or a web based reference? where i can find good tutorials?

share|improve this question
Just kidding but you want to learn something that we won't see for at least 5-7 years? (If we look at what's happening to CSS3) – Mike Gleason jr Couturier Feb 7 '10 at 16:39
Kind of agree with @Mike because, after all, I don't think it will take that much effort to take on once HTML5 start appearing. But who knows, that might be sooner than you think :) – chakrit Feb 7 '10 at 16:50
hmmm, <video> tags are already used, so I'm not so sur it's useless – Valentin Rocher Feb 7 '10 at 16:52
2  
I would just like to point out, counter to the above, there is already significant support for many aspects of HTML 5 in current versions of Internet Explorer, Firefox, Chrome and Safari (and many cross browser work-a-like solutions for features like HTML5 video and Canvas that are not implemented to the same degree in each browser). – Iain Collins Feb 9 '10 at 10:16
1  
And don't forget mobile phones like the iPhone, which gives an adjusted keyboard on specific HTML5 input types: diveintohtml5.org/forms.html – Marcel Korpel Feb 10 '10 at 2:23
show 3 more comments

closed as not constructive by Frankston Ralphington III, Kev Oct 12 '12 at 22:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 4 down vote accepted

Here are some of my links:

70 Must-Have CSS3 and HTML5 Tutorials and Resources
3 Good Reasons To Start Using HTML5 Right Now (And 1 Reason Not To)
HTML5 / XHTML5 with CSS for Safari, Firefox, Opera & IE
4 Useful HTML5 Browser Support Overviews
Web Designers' Browser Support Checklist
HTML 5 and CSS 3: The Techniques You’ll Soon Be Using
Have a Field Day with HTML5 Forms
HTML 5 pocket book
Validator.nu (X)HTML5 Validator

With concerns:

The devil in the details
Guide to HTML5 Hiccups

There's a major drawback I read about: as you'll probably know, IE can't style elements it doesn't know. In order to style them, you need something like HTML5 shiv. But when printing a page using IE, JavaScript is not processed and IE won't print your page the way you intended.

As of last april, above mentioned problem does no longer exist. Now we have an IE Print Protector, which is included in HTML 5 shiv, so your pages will print correctly.

EDIT: I can probably update this post with new links daily, but I prefer a lazy shortcut: just have a look at these Delicious bookmarks. A less useful resource, but still a good one, is Twitter. There are tools that scrape all Tweets containing #html5 or html5, but I'm not that familiar with those.

share|improve this answer

You should head on over to Dive Into HTML5.

share|improve this answer

Here are some good HTML 5 examples -

http://html5demos.com/

HTML 5 tag reference -

http://www.w3schools.com/html5/html5_reference.asp

And the HTML 5 spec -

http://www.w3.org/TR/html5/

share|improve this answer

Follow the browser-specific developer blogs, like

..then read the specs for the additions/technologies you find interesting.

share|improve this answer

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