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

    validazione non riuscita..

    ho diversi errori in una validazione che non comprendo...

    Ve ne posto qualcuno:

    Line 7, column 72: end tag for "meta" omitted, but OMITTAG NO was specified
    ...ype" content="text/html; charset=iso-8859-1">
    ^
    Line 7, column 0: start tag was here (explain...).
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    ^
    Line 8, column 41: end tag for "meta" omitted, but OMITTAG NO was specified
    <meta name="author" content="hokutodave">
    ^
    Line 8, column 0: start tag was here (explain...).
    <meta name="author" content="hokutodave">
    ^
    Line 9, column 56: end tag for "link" omitted, but OMITTAG NO was specified
    <link rel="stylesheet" type="text/css" href="stile.css">
    ^
    Line 9, column 0: start tag was here (explain...).
    <link rel="stylesheet" type="text/css" href="stile.css">
    ^
    Line 16, column 4: end tag for "br" omitted, but OMITTAG NO was specified


    ^
    Line 16, column 0: start tag was here (explain...).


    ^
    Line 17, column 22: an attribute value literal can occur in an attribute specification list only after a VI delimiter
    [img]bio.gif[/img]

    ^
    e il pezzo di codice:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <title>Giambassista Official Website</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta name="author" content="hokutodave">
    <link rel="stylesheet" type="text/css" href="stile.css">
    </head>

    <body>
    <div id="box">

    <div id="menu">


    [img]bio.gif[/img]


    Grazie a chiunque mi aiuterà

  2. #2
    Utente bannato
    Registrato dal
    Dec 2003
    Messaggi
    721
    in xhtml per i tag senza chiusura come ad esempio img o meta o link devi insierire / alla fine del tag

    esempio

    [img]pippo.jpg[/img]

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>

    <link rel="stylesheet" type="text/css" href="stile.css">

    vale anche per il br
    quindi devi scrivere
    e non


    questo ovviamente se vuoi che la pagina sia xhtml altrimenti se vuoi che sia solo html devi cambiare il tag doctype e inserire

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">.

    ok?

  3. #3
    This Page Is Valid HTML 4.01 Transitional!

    grazie

  4. #4
    Utente bannato
    Registrato dal
    Dec 2003
    Messaggi
    721
    prego

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 © 2025 vBulletin Solutions, Inc. All rights reserved.