Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/04/2009, 10:18
Avatar de Joni2Back
Joni2Back
 
Fecha de Ingreso: marzo-2009
Mensajes: 146
Antigüedad: 15 años
Puntos: 1
Advertencia en Validacion xHTML

Hola amigos, tengo una web que estoy validando y me sale esta unica advertencia:

Info Using Direct Input mode: UTF-8 character encoding assumed

Unlike the “by URI” and “by File Upload” modes, the “Direct Input” mode of the validator provides validated content in the form of characters pasted or typed in the validator's form field. This will automatically make the data UTF-8, and therefore the validator does not need to determine the character encoding of your document, and will ignore any charset information specified.

If you notice a discrepancy in detected character encoding between the the “Direct Input” mode and other validator modes, this is likely to be the reason. It is neither a bug in the validator, nor in your document.


Probe de todo y no lo puedo quitar!, por las dudas adjunto el codigo html
Saludoos

(Las url las mande con espacios sino no me las dejaba adjuntar)


Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "h tt p : // w ww. w3 .org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="h tt p : // w ww. w3 .org/1999/ xhtml" xml:lang="es-es" lang="es-es" dir="ltr" >
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  5. <meta name="keywords" content="keys" />
  6. <meta name="description" content="Contenido" />
  7. <title>test</title>
  8. <link rel="stylesheet" type="text/css" href="estilos.css" />
  9. <link rel="shortcut icon" href="favicon.ico" />
  10. </head>
  11. <div id="general">
  12.   <div id="header">
  13.     <div id="titulos">
  14.       <center>
  15.         <table class="titulos"  border="0">
  16.           <tr>
  17.             <td ><div id="icon"></div></td>
  18.             <td ><div id="titulo-arriba">test
  19.                 <div id="titulo-abajo">test </div>
  20.               </div></td>
  21.           </tr>
  22.         </table>
  23.       </center>
  24.     </div>
  25.   </div>
  26.   <div id="contenido"> <span class="texto-grande"> test<br/>
  27.     <small>test</small> </span> <br/>
  28.     <br/>
  29.     <input class="texto" />
  30.     <br/>
  31.     <br/>
  32.     <input type="submit" value="Photos!" />
  33.   </div>
  34.   <div id="footer">
  35.     <table border="0" width="100%" style="height:100%; padding-right:5px;" >
  36.       <tr>
  37.         <td valign="bottom"> Links | FAQ | About | Contact</td>
  38.       </tr>
  39.     </table>
  40.   </div>
  41. </div>
  42. </body>
  43. </html>