It looks a lot better
I would move the inline styles to dn.css. For instance, where you have:
Code:
h4 style="text-align: center; font-family: verdana;
Change to just <h4> and put in the CSS file
Code:
h4 {
text-align: center;
font-family: verdana;
}
But since you want all text to be verdana,
put that in the .body part of the CSS. But I wouldn't have
a .body since that is confusing with the body tag. Name
it something like "page". And use an id with a #page
since it will only be used once on the page.
CSS:
Code:
#page {
width: 764px;height: 635px;top: 92px;left: 132px;
position: absolute;
font-family: verdana;
}
Move your style for links that you have in the head to the style sheet.
Last edited by joder; 07-17-2008 at 10:05 AM..
|