|
You're getting the dreaded FOUC - flash of unstyled content. That is because you're using @import for the CSS file. If you put it in a <link rel..> tag instead, or put in a second line with a <link> tag, then FOUC will stop.
You're using XHTML strict, but you have a lot of unclosed tags. EVERY tag MUST be closed, even meta tags and <br>s.
You also shouldn't define your font sizes in px or pt. People who are using IE will not be able to resize the text should they find your chosen size too small to read. IE7's new 'zoom' isn't ideal either. Better to use % or em for font sizes.
Your id names really should be all lowercase - thats part of the XHTML spec.
Overall it looks pretty good. A bit bland graphically perhaps.
__________________
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
|