Baron von Pinthausen: Probleme mit der Ausgabe des W3C Validierers

Beitrag lesen

Hi!

Sry, für die Länge, aber ich komme mit den Ausgaben nicht mehr klar:

Below are the results of attempting to parse this document with an SGML parser.

Line 10, column 88: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
  ...lling="no" frameborder="0" noresize />
                                          ^
Line 13, column 93: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
  ...e="inhalt" frameborder="0" noresize />
                                          ^
Line 20, column 25: document type does not allow element "p" here; assuming missing "body" start-tag
                         <p>Diese Website verwendet Frames. Bei Ihnen werden keine
                           ^
Line 21, column 24: end tag for "body" omitted, but OMITTAG NO was specified
                </noframes>
                          ^
Line 20, column 23: start tag was here (explain...).
                         <p>Diese Website verwendet Frames. Bei Ihnen werden keine

Kann mir da jemand helfen? Ich habe unten nocheinmal den gesamten Code angehängt!
[code start]
1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Frameset//EN"
   2:      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
   3: <html>
   4:      <head>
   5:           <title>x3mf8er's Own - Startseite</title>
   6:           <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
   7:      </head>
   8:
   9:      <frameset rows="70,*,50">
  10:               <frame src="top.html" name="top" scrolling="no" frameborder="0" noresize />
  11:
  12:                     <frameset cols="170,*">
  13:                              <frame src="inhalt.htm" name="inhalt" frameborder="0" noresize />
  14:                              <frame src="start.htm" name="mitte" />
  15:                     </frameset>
  16:
  17:               <frame src="unten.html" name="unten" scrolling="no" frameborder="0" />
  18:
  19:               <noframes>
  20:                        <p>Diese Website verwendet Frames. Bei Ihnen werden keine Frames angezeigt</p>
  21:               </noframes>
  22:      </frameset>
  23: </html>
[code end]