View Single Post
  #2 (permalink)  
Old Oct 8th, 2007, 09:21
MikeHopley MikeHopley is offline
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Can someone make sense of these validation errors?

You can't put a <form> inside a <table> (at least, not without a <tr> and <td>!). Delete the <table>.

You have used "smart quotes" -- the curly, typographically correct ones -- to quote attribute values. Nasty. Use the basic " instead. This is probably a copy&paste error from MS Word or similar.

<u> is deprecated. Use CSS text-decoration: underline instead.

Close all your tags! You're even missing </body> and </html>.

Now some general advice: don't save up errors like this; deal with them as soon as they occur, and it will be easier. Get HTML validator for Firefox.

Last edited by MikeHopley; Oct 8th, 2007 at 09:23.
Reply With Quote