The header is a start. Since you have it centered, it would be best if the skeletal structure of your content was also centered.
Since you're using a black background, I would definitely recommend you make sure that the contrast between the font's colors, and your background are a match, because you don't want your viewers to have to strain their eyes to view your website/read text on it.
The site is based off of DIVs so that's definitely going to make it easier for you to change the width of the website. If you want a specific width make sure that you consider a size that would be appropriate for users that still have 800x600. Maybe 775px, or if you want it to be a fluid width, set a percentage of 75% and make sure you also include a min-width so that it doesn't stretch too far for people that use larger resolutions (like me: I have 1440x900px.)
To center it you would just set margin: 0 auto; which will create equal space on either side of the div (side = left/right, not top/bottom.)
Also, you should specify some anchor coloring in your CSS.
a{}
a:active{}
a:visited{}
a:hover{}
Accessibility recommends that your visited links differ from each other, so make sure that your visited links stand out so users can see what links they've already been too!
Should also look through your css, you've got two errors in it; Might want to clean it up so it doesn't prevent it from rendering wrong in a browser:
http://jigsaw.w3.org/css-validator/v...andayum.com%2F
|