|
You're missing alt attributes on tons of images.
You're re-using IDs - ID's are supposed to be UNIQUE they can only be used once. If you must re-use a style, make it a class.
There is nothing in your side navigation to indicate that those lists ARE links -- except the change of the cursor. Not really good enough, you should leave in the underline at the very least to indicate it IS a link.
You're using invalid css rules - like this:
float:left;
width:574;
height:32;
574 WHAT ??? You must specify a unit, it must be 574px or 574em or 574%.
You're using px for text sizes, which handcuffs IE users from being able to re-size the text if they need to.
On the 2nd site, you've got a bunch of empty <p></p> tags. If you need to space out your text, use your CSS, but don't add unnecessary paragraphs.
On site #3 you've got all of the above and a bunch of empty <b></b> tags.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|