tags:

views:

48

answers:

1

http://validator.w3.org/check?uri=http%3A%2F%2Fratingscorner.com%2Fproduct_rating.php%3Falias%3DRashtreeya-Vidyalaya-College-of-Engineering-Mysore-Road-Bangalore%26product%3Dcolleges&charset=%28detect+automatically%29&doctype=Inline&group=0&ss=1&st=1&outline=1&No200=1&verbose=1

hi guys, i solved mots of my css errors . there are few errors which i am unable to fix. can some one please help me on it.

1.Warning Line 440, Column 1121: cannot generate system identifier for general entity "p" and similar errors 2.Error Line 113, Column 52: document type does not allow element "input" here; missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del" start-tag 3.Error Line 441, Column 37752: document type does not allow element "tfoot" here

  1. Error Line 440, Column 80: EntityRef: expecting ';'
+1  A: 

XHTML strict requires a fieldset around the form elements:

<form>
  <fieldset>
     <input />
  </fieldset>
</form>

also, not all of your ampersands are encoded as & and it's expecting the amp; part (or nbsp; part or whatever code before the ; )

Dan Heberden
pradeep