View Single Post
  #4 (permalink)  
Old Jan 16th, 2008, 02:03
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: can't validate site in order to post real question

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...
Reply With Quote