Validieren kleine Frage...

  • Ich denke einer von euch kann mir sicher sagen was bei der Validierung auf W3C damit gemeint ist:

    Zitat


    Result: Tentatively passed validation
    File: index.html
    Encoding: utf-8
    Doctype: XHTML 1.0 Strict
    Root Namespace: http://www.w3.org/1999/xhtml

    Character Encoding mismatch!

    The character encoding specified in the XML declaration (iso-8859-1) is different from the value in the <meta> element (). I will use the value from the XML declaration (iso-8859-1) for this validation.

    Note: The Validator XML support has some limitations.

    hier der header:

    Sonst scheint alles strict zu sein, jedoch dass mit dem iso kapiere ich ned so ganz was er da meint ^^
    Wäre schön wenn mir einer sagen könnte auf was ich achten muss, oder ob ein fehler vorhanden ist

    Danke schonmal im Voraus :)

    Grüsse
    Dragooni

  • Zitat

    <?xml version="1.0" encoding="UTF-8"?>
    [...]
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    Des sind 2 verschiedene zeichensätze.

    XML
    <?xml version="1.0" encoding="UTF-8"?> 
    [...]
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />


    oder

    XML
    <?xml version="1.0" encoding="iso-8859-1"?> 
    [...]
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    Du musst dich schon für einen entscheiden ;)