- Not closing Tags CODE<div>LOL!<br />goes on and on and on w/o closing the <div> with </div>
- Not Using Self-Closing tags or Closed Tags CODE<input type="text"><br />
should be
<input type="text"></input><br />
or
<input type="text" /><br /> - Using Non-Self-Closing Breaks or Horizontal Rules CODE<br><hr>
should be
<br /><hr />
BUT NOT
<br></br><hr></hr> (Deprecated!) - Capitalizing element names - Validation Problems CODE<Br />
- Using no Doctype CODE<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- Using Deprecated Tags CODE<i><b><u>Bob</u></b></i>
should be something like
<span style="text-decoration:iti;"><strong><span style="font-style:italic;">Bob</span></strong></span>
(I know, I can combine the Span's, but this is to show the correct replacements...)
Also, for Bold:
<span style="font-weight:bold (OR BOLDER OR A NUMBER);">Bob</span>
Well, hopefully you heed these... If you do, you're well on your way to being able to validate with W3's STRICT standards, and be safe from the deprecated stuff.