It's a very nicely designed site; color scheme is easy on the eyes and navigation is easy to follow!
Your site is missing a <!DOCTYPE Declaration> which is mandatory for most current markup languages, and without one, it's impossible to reliably validate a document. The DOCTYPE defines the version of the document like -- HTML 4.0.1, XHTML 1.0, 1.1, ...etc.
You have 13 code warnings you may wish to fix, so that your site validates for accessibility in all browsers, as shown here ...
Code:
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 13 column 1 - Warning: <body> proprietary attribute "leftmargin"
line 13 column 1 - Warning: <body> proprietary attribute "topmargin"
line 13 column 1 - Warning: <body> proprietary attribute "marginwidth"
line 13 column 1 - Warning: <body> proprietary attribute "marginheight"
line 18 column 36 - Warning: <img> lacks "alt" attribute
line 42 column 33 - Warning: <img> lacks "alt" attribute
line 42 column 123 - Warning: <img> lacks "alt" attribute
line 47 column 41 - Warning: <img> lacks "alt" attribute
line 53 column 12 - Warning: <img> lacks "alt" attribute
line 57 column 3 - Warning: <table> proprietary attribute "height"
line 60 column 7 - Warning: <td> proprietary attribute "background"
line 62 column 42 - Warning: <img> lacks "alt" attribute
|