View Single Post
Old 2007-01-09, 04:37 PM   #6
Simon
That which does not kill us, will try, try again.
 
Simon's Avatar
 
Join Date: Aug 2003
Location: Conch Republic
Posts: 5,150
Send a message via ICQ to Simon Send a message via AIM to Simon Send a message via Yahoo to Simon
Okay, there's the problem.

- Element “<form>” requires that the attribute “action” be specified.

- Close tag for element “</font>” omitted but document type doesn't permit it.

You really should get all the font tags out and stick that in your css too anyway. For the form tag you can use something like this:

<form action="empty">

I put the word 'empty' in there because if I leave it empty I get an error telling me the form action is empty. So that's just my little workaround for avoiding the error. In this kind of usage, the form is not being used as designed -- in an interactive manner -- so the action really doesn't matter. You just need something there if you want the code to validate.
__________________
"If you're happy and you know it, think again." -- Guru Pitka
Simon is offline   Reply With Quote