Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting ready to learn html5

Tags:

I'm a desktop application developer, and I plan learning html5, but as it's not released, there are (almost) no published books and not too much infomation for beginners on the web... I feel I should start with html4 and the current web development skills.

I think I should start with html4, css, and javascript... but there are so many technologies related that I get lost :D So, what current technologies will be still used when html5 is released? I mean, what about "jquery" and "ajax"? I know they are javascript under the hood, but will they still make sense in the future?

What would you recommend me considering that I have just a little bit of html knowlegde, almost null CSS and completely null in javascript?

like image 887
vtortola Avatar asked May 06 '10 16:05

vtortola


People also ask

Is HTML5 easy to learn?

Most developers find HTML5 the easiest to learn because of the modern features it comes with. Mastering the concepts and uses of HTML is easier when you're directly applying the knowledge to developing your first web page.

How long will it take me to learn HTML5?

It should take you one to two weeks to get the full gist of HTML, and about a month of practice to get comfortable with the language. The key is to apply your learning by working on projects.

Can I learn HTML5 without knowing HTML?

The new html5 features are extraneous to writing 'good html'. They're useful, but you can learn to write great html without them.


2 Answers

Dive Into HTML5 is solid, but it isn't really targeted at total beginners. You might want to check out Designing with Web Standards for getting a grasp on the basics of HTML/CSS. For the JavaScript side of things, I'd recommend JavaScript: The Good Parts. Also keep an eye out for Secrets of the JavaScript Ninja, which is due this summer.

like image 66
Hank Gay Avatar answered Oct 18 '22 18:10

Hank Gay


If you're already familiar with HTML4, v5 is not terribly different, mostly it adds new elements and attributes, and removes some.

For essential coverage of web standards, I suggest Jeffrey Zeldman's Designing with Web Standards (v3). It's largely theory and background, with little code. I recommend it. There is a sister book by John Allsop, Developing with Web Standards, which I have not (yet) read, but it is supposedly the implementation half of the topic the two books cover.

There is a book in the making by Jeremy Keith, HTML5 for Web Designers, on the new A Book Apart site (backed by the people of An Event Apart, including Jeffrey Zeldman). Jeffrey writes about the new book on his site, and provides links to other related coverage, including Jeremy Keith's take on it.

like image 23
Grant Palin Avatar answered Oct 18 '22 19:10

Grant Palin