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

Before reading JavaScript books, what is a good resource for learning HTML and CSS? I'm looking for material that will get me up to speed rather than specify every single compliance standard. So, concepts that are prerequisites for exploring JavaScript. I've done basic web development for about 6 months (HTML/CSS, ASP.Net) but my approach has been a top-down one - I've learnt from tutorials and code examples rather than books.

Many thank you's...

share|improve this question
1  
What is wrong with using tutorials rather than books? If you can use the technology properly, isn't that all that matters? – JB King May 20 '09 at 20:03

9 Answers

up vote 0 down vote accepted

HTML Dog is what I usually recommend

share|improve this answer

From personal experience, learn by example. Use the view source command in your browser to see how sites you like are crafted.

share|improve this answer
2  
Unfortunately, many sites are very badly designed. Seeing how they did it just teaches bad techniques. – Quentin May 20 '09 at 20:26
Fair point, but I do believe that certain best practices in web design come with experience. I started out developing web sites some 13-14 years ago, and when I look back at a number of sites I developed all those years ago, I do wince. Now part of that is due to the limitations of HTML in those days, but it was only by constantly delving into how other people had done things, and looking at the likes of the now defunct builder.com, and more recently web developers blogs that I kept on top of what were/are the best practices. – Sliff May 20 '09 at 21:22

Designing with Web Standards by Jeffrey Zeldman and, Eric Meyer on CSS and, More Eric Meyer on CSS

Read all three of those (or any one) and you'll be rewarded with an excellent foundation in HTML/CSS.

share|improve this answer

W3 Schools is a fantastic starting point.

share|improve this answer
2  
W3 Schools is terrible, they are frequently wrong, oversimplify and teach bad habits. – Bjorn Tipling May 20 '09 at 19:56
But other than that, they're fantastic! :-) – Will Hartung May 20 '09 at 19:59
web.archive.org/web/20080122034053/http://… - that guy seems (seemed?) to agree with apphacker – Bodger May 20 '09 at 20:02

In addition to the aforementioned W3 Schools site, you could also look at SitePoint or some of the other, similar questions. (i.e. this one)

As also mentioned, you could find what you like and take a peek at the source, and ask about any particular item you don't understand. This option isn't without its pitfalls as there is some horrendous code floating around out there... same could be said for some of the tutorials - which is why the two sites I mentioned are run by reputable entities. ;)

share|improve this answer
Why the downvote? I'll fix the answer if its a legit concern... or is it because despite the oversimplification, I still think the w3schools site is an ok place to start? – AnonJr May 20 '09 at 20:34

I would recommend any of the tutorials on www.tizag.com. They are well written, concise, and the samples they give are useful.

share|improve this answer

The Opera Web Standards Curriculum is a good starting point. It covers things clearly, and explains the "whys".

share|improve this answer

In addition to the above answers... I liked Andy Budd's CSS Mastery book. The head first books are usually ok and a quick to read through, so that may be an option.

Try to get something 2005 or newer. For instance, the Eric Meyer on X books above are excellent (some of my favorites) but contain some things that are no longer completely kosher.

share|improve this answer

For some good examples on CSS design, I recommend css Zen Garden

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.