It’s been a while since I used a fee online validator. A few years ago W3Validator would do the job just fine. Now that they switch to https://validator.w3.org/nu/ things seemed to have gone awry.
For instance, even with pretty major offenses such as unclosed , or tags, the document still comes up as having no errors. What gives? How can a validator ignore such obvious mistakes?
Is there a good alternative to a validator that can actually be useful to beginners?
Thank you, John, I suspect that may be so. In fact, i tried to leave out opening/closing tags for: html, head and body and none seem to produce errors. Is this a thing now? Any tag that is a part of HTML5 template won’t be recognized as broken?
i.e. the nu validator is a conformance checker but without checking against a DTD there is less to check.
I have long considered the W3C validator as a tool not some type of “certification test”. Although a good number of sites can be found that seem to ignore valid HTML (and wonder why the site has problems) there are also some developers at the other end of the spectrum and obsess about every error and warning (IMHO, many Warnings should be Notices instead, meh)
The core reason to run your HTML documents through a conformance checker is simple: To catch unintended mistakes—mistakes you might have otherwise missed—so that you can fix them.
Beyond that, some document-conformance requirements (validity rules) in the HTML spec are there to help you and the users of your documents avoid certain kinds of potential problems. …
Coming from XHTML, that’s how I feel about much of HTML 5. It’s much too “tolerant of sloppiness” for my liking. But I guess if browsers can deal with it and it lowers the bar to enter web dev it’s OK by me.