From my time on SO I've found w3schools may not be the best place to send people as an html/web programming reference. I started using them a loooong time ago and have been sending people there for years because of their usage of programming categories and tutorials.

I know I can go there and easily find out what different tags are available for use(though it may not be correct) and I can find out attributes to tags easily. Are there any alternatives that can provide the same simple reference and tutorials as they do? Where should I refer people too?

link|improve this question
7  
I want to add this site to the list: w3fools.com Gives a pretty clear explanation why you should find an alternative to w3schools – wajiw Jan 14 '11 at 21:16
1  
W3Schools is not a bad site. I mean, their tuturials are not bad. As long as you don't get fooled into thinking they have any official status whatsoever. For instance, those certificates of theirs mean absolutely nothing. The only real complaint I have about W3Schools is they pretend that what they have is all there is, all you need. Other than that, their content isn't much worse than what other sites have. – Mr Lister Jan 29 at 15:04
feedback

9 Answers

up vote 14 down vote accepted

W3Fools - A W3Schools Intervention also promotes the following "more reputable sources":

link|improve this answer
That looks like an excellent reference guide I've never seen before. Thanks for the suggestion! – wajiw Jan 11 '11 at 20:47
2  
Looks like Google Doctype is down... – Zach L Oct 7 '11 at 14:18
still down today – byronyasgur Nov 8 '11 at 14:40
Google Doctype is marked as "No Longer Available" (and it's actually down from October 2011). – Juicy Scripter Feb 20 at 10:28
feedback

In general, my first stop for HTML, Javascript or DOM information is the MDC Doc Center from the Mozilla Developer Network. It is occasionally Firefox/Gecko-specific, but is in general a good first stop.

Personally, I find the HTML spec (and even more the DOM spec) far to hard to take in quickly or to use as a quick reference. MDC is great for that.

link|improve this answer
I've only recently heard about the MDC. I didn't realize they had tutorials/etc getting people familiar with HTMl. Great suggestion – wajiw Jan 11 '11 at 20:50
feedback

The first place you should probably send somebody for reference would be the most official body of reference for the subject. For example, if somebody was asking about a particular HTML tag or something about the HTML spec, their first stop should be that spec (as an example, and there are lots of page anchors throughout that spec to navigate directly to what the user needs).

Examples can often be quickly found via Google. If the Google results are clearly plentiful and seem pretty good, then just linking the user to the Google search itself would work fine. (And may subtly nudge them to use Google a little more thoroughly, though keep in mind that SO generally doesn't want its answers to just be "just Google it" so use tact and offer additional information beyond just the search.)

link|improve this answer
feedback

There are too many good references out there, but these are my two cents. Hope it helps:

link|improve this answer
feedback

I love this one:

I love the opera tutorial. (From there onwards).

Concise but complete and very clearly explained!

See the table of contents here.

link|improve this answer
feedback

The very best HTML reference is the HTML spec itself:

It provides examples of how elements/attributes can be used, and the expected reactions in many case situations.

link|improve this answer
The w3 specs can be pretty intimidating to new web programmers. I'm looking for more of a simplified learning reference. Thanks for the suggestion though. – wajiw Jan 11 '11 at 20:45
jump down the index to the html element you're after, skip the intro. It's not a book, it's a reference. – zzzzBov Jan 11 '11 at 20:58
I down-voted because IMHO Definitely not for learning! Excellent, yes, but not for beginners! – Trufa Jan 11 '11 at 21:08
this is the problem - people think the w3 specs are the answer – byronyasgur Nov 8 '11 at 14:38
@byronyasgur, have you read the HTML5 spec? it's not hard to read and has good examples. I learned more about HTML out of reading the specs than any other resource. – zzzzBov Nov 8 '11 at 14:42
show 3 more comments
feedback

Sites like Microsoft's MSDN and Mozilla's MDN are not bad, as long as you remember that they view the world through coloured glasses. The only real reference is, of course, the W3C.
Whenever some site's information clashes with the information on the W3C's site, the W3C is always right.

Keep that in mind and you can safely peruse other websites, even W3Schools. W3Schools is not better or worse than other non-official websites.

link|improve this answer
feedback

There is the W3C's Web Education Community Group Wiki, on standards that are maintained by them. It provides quite some useful information on e.g. HTML and CSS, and they link to appropriate standards.

See for example this page on the textarea element

EDIT: I just realize this was already mentioned as 'general Learn page' from the W3Fools page, but it might still be useful to name this reference.

link|improve this answer
feedback

I don't mean this as a jackass answer, but I honestly believe that googling a simple question (like "html input syntax") is ten times faster than looking it up on any specific page.

link|improve this answer
I'm more looking for a learning reference for finding tags/etc you may not know about yet. – wajiw Jan 11 '11 at 20:44
In that case I agree with the people mentioning the HTML specs themselves. – Anders Holmström Jan 11 '11 at 20:45
I updated my question to specify 'learning' alternative :-) – wajiw Jan 11 '11 at 20:49
2  
w3schools and other outdated references are very often the first results you get on a Google search. It helps a bit to use "More search tools" and choose "Past year" to avoid old articles, but you'll still get some bad advice. – gregers Oct 25 '11 at 17:16
1  
I have no idea why this answer has only downvotes. Most of the time, I use Google too. As long as you know which result to click; the first result is not always the best! If one of the results is from the W3C, that will probably be it. Otherwise, just use your brain. – Mr Lister Jan 29 at 14:59
feedback

Your Answer

 
or
required, but never shown

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