Your site have:
You are using an
XHTML doctype (which you are using right now) this means you need to self-close elements.
- Code: Select all
<link href="style.css" rel="stylesheet" type="text/css">
to
- Code: Select all
<link href="style.css" rel="stylesheet" type="text/css" />
It's better for you to use an HTML or XHTML Strict DTD. I don't see any problem in your link, perhaps it was your doctype. Try change them and see what happen!
Cheers...