|
First of all, you've got one big problem - your doctype XHTML 1.0 Strict - yet you're using tags and methods that simply are NOT allowed in Strict mode. Back it off to Transitional or fix the bad html coding. Scripts must be enclosed in [CDATA] too. You still have a <link rel...> tag inside the body, it must go in the <head>.
In XHTML, ALL tags must be closed and you've got a ton of <br>'s in there that are improper -- it should be <br />. You must also adhere to other coding standards for Strict that you are not doing in your code.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|