I am trying to validate a document via w3c link validator. The document seems okay but the there are some errors. If anyone can help me I will be willing to pay This is the document: http://validator.w3.org/checklink?uri=http%3A%2F%2Fdomainreviews.us%2FW3C%2FDOM%2F&hide_type=all&depth=&check=Check There seem to be some problems with a bunch of links and this is the reason I cant get the document validated
Well you need to correct how the internal links work. You have this : <li><a href="#overview">Übersicht</a></li> <li><a href="#Thisdocument">Dieses Dokument</a></li> <li><a href="#releases">Veröffentlichungen</a></li> <li><a href="#Documents">Dokumente</a></li> <li><a href="#Meetings">Meetings und Telefonkonferenzen</a></li> <li><a href="#Files">Quelldateien und CVS</a></li> <li><a href="#CurrentlyGoingOn">Was derzeit läuft</a></li> <li><a href="#Participation">Möchten Sie mitwirken?</a></li> <li><a href="#Acknowledgments">Danksagungen</a></li> Code (markup): Which is correct. Problem is the actual link sections: <div id="overview"> Needs to be <div name="overview" id="overview"> id only if you are using it for CSS else it could be dropped.