To validate the xhtml make these changes:

1.<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"
marginwidth="0" marginheight="0" >

remove these attributes and move into css:

body {margin:0;}

2. Place the links inside mainNav into an unordered list (not
necessary to validate but
semantically more useful and provides the ability to style the links
inside later)

3.
<div id="grey_background">

...try not to use presentational descriptions in the html - it says
what the div looks like, not
what it means

4.
<div id="display_left">

...see above

5.
<h2 align="center">

move to css

h2 {text-align:center;}


This should give you an idea of how to clean up the markup. Move all
presentation into the css, and
leave yourself with clean, meaningful html that can be styled however
you like. And lose
the font tag!
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to