Visualizzazione dei risultati da 1 a 7 su 7
  1. #1

    aiuti sul W3C vorre consigli o qualche guida

    avete consigli guide o altro materiale perchè nel mio sito ho errori che non riesco a spiegarmi.

  2. #2
    C'è una sezione apposita in questo forum chiamata 'Link Utili':

    - http://forum.html.it/forum/showthrea...hreadid=998978

    Puoi comunque sempre proporci i tuoi problemi in modo da poterli risolvere insieme. Ad esempio, in questo caso, ci basta un link alla pagina incriminata.

    P.S. La prossima volta, prima di aprire nuove discussione, dai una scartabellata a quelle vecchie.

  3. #3

    questo sono gli errori che mi da il validatore W3C

    This page is not Valid HTML 4.01 Transitional!
    Below are the results of attempting to parse this document with an SGML parser.
    1. Error Line 4 column 72: character data is not allowed here.
    ...ype" content="text/html; charset=iso-8859-1"/>
    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include putting text directly in the body of the document without wrapping it in a container element (such as a

    aragraph</p>) or forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes).

    2. Error Line 21 column 42: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align="left">Home</h2></td>
    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
    One possible cause for this message is that you have attempted to put a block-level element (such as "

    " or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

    3. Error Line 22 column 53: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align="center">Lezioni Private</h2></td>

    4. Error Line 23 column 43: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align ="right">Link</h2></td>

    5. Error Line 29 column 24: document type does not allow element "BODY" here.
    <BODY BGCOLOR=" #000000">
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    6. Error Line 33 column 29: required attribute "TYPE" not specified.
    <SCRIPT LANGUAGE="Javascript">
    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

    7. Error Line 38 column 54: required attribute "TYPE" not specified.
    <SCRIPT LANGUAGE="Javascript" SRC="/_ad/digi_ad_11.js">

    8. Error Line 44 column 29: required attribute "TYPE" not specified.
    <script language="JavaScript"><!--

    9. Error Line 50 column 32: required attribute "TYPE" not specified.
    <script language="JavaScript1.1"><!--

    10. Error Line 54 column 13: end tag for element "SCRIPT" which is not open.
    //--></script>
    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.
    If this error occured in a script section of your document, you should probably read this FAQ entry.

    11. Error Line 56 column 29: required attribute "TYPE" not specified.
    <script language="JavaScript"><!--

    12. Error Line 64 column 9: document type does not allow element "NOSCRIPT" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <noscript>

    13. Error Line 65 column 94: required attribute "ALT" not specified.
    ...?cid=it_Libero-it_0" width=1 height=1>

    14. Error Line 67 column 9: end tag for element "COMMENT" which is not open.
    </COMMENT>

    15. Error Line 70 column 6: end tag for "A" omitted, but its declaration does not permit this.
    </BODY>
    o You forgot to close a tag, or
    o you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
    The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag.

    16. Info Line 30 column 0: start tag was here.
    <a href="mailto:antonio.mangano77@gmail.com"><img src="Mail6.gif" align ="right"

  4. #4

    Re: questo sono gli errori che mi da il validatore W3C

    Originariamente inviato da PinoAntonino
    This page is not Valid HTML 4.01 Transitional!
    Sarebbe più utile un link alla tua pagina (oppure che inserissi il codice html della tua pagina)

  5. #5

  6. #6
    Questo è il report del validatore ufficiale:

    - http://validator.w3.org/check?verbos...2Fantobello%2F

    Quali sono gli errori che non capisci?

  7. #7

    Re: questo sono gli errori che mi da il validatore W3C

    Ne commento solo alcuni:

    1. Error Line 4 column 72: character data is not allowed here.
    ...ype" content="text/html; charset=iso-8859-1"/>
    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include putting text directly in the body of the document without wrapping it in a container element (such as a

    aragraph</p>) or forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes).
    Hai mescolato html e xhtml! Se usi html, non devi chiudere i tag così!
    Scrivi: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    Idem dicasi per tutti gli altri elementidell'head.

    2. Error Line 21 column 42: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align="left">Home</h2></td>
    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
    One possible cause for this message is that you have attempted to put a block-level element (such as "

    " or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

    3. Error Line 22 column 53: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align="center">Lezioni Private</h2></td>

    4. Error Line 23 column 43: document type does not allow element "H2" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
    <td> <h2 align ="right">Link</h2></td>
    Credo che ti stia dicendo che non puoi inserire <H2> dentro <a>. Prova ad invertire:
    <h2 align="center">Lezioni Private</h2>

    5. Error Line 29 column 24: document type does not allow element "BODY" here.
    <BODY BGCOLOR=" #000000">
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
    Hai messo due body... giustamente s'arrabbia!

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.