Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/04/2015, 10:45
danigarba
 
Fecha de Ingreso: junio-2009
Mensajes: 16
Antigüedad: 15 años, 5 meses
Puntos: 0
Problema validación de página en validator.w3.org

He puesto para validar una página de mi sitio web en validator.w3.org y sale este mensaje:

Código:
Line 119, Column 122: document type does not allow element "table" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
…le width="100%" border="0" cellpadding="0" cellspacing="0" class="fondotablas">
✉
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 "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

Espero pueda ayudarme alguien:

Código:
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="fondotablas">
                <tr>
                  <td width="330">
                 <img src="../imagen/play_rojo.jpg" width="20" height="20" border="0" align="bottom" alt="" title=""/>
                   <img src="../imagen/play_azul.jpg" alt="" width="19" height="19" border="0" align="bottom" />&nbsp;<img src="../imagen/cuadrado.png" alt="" width="19" height="19" border="0" align="bottom" /><a rel="external" href="cancion.php?idcancion=525"><br />Esto es un mensaje/a><br />Ejemplo 1<br /><br /></td>
                  <td width="12"></td>
                </tr>
                        </table>
                          <table width="100%" border="0" cellpadding="0" cellspacing="0" class="fondotablas">
                <tr>
                  <td width="330">
                 <img src="../imagen/play_rojo.jpg" width="20" height="20" border="0" align="bottom" alt="" title=""/>
                   <img src="../imagen/play_azul.jpg" alt="" width="19" height="19" border="0" align="bottom" />&nbsp;<img src="../imagen/cuadrado.png" alt="" width="19" height="19" border="0" align="bottom" /><a rel="external" href="cancion.php?idcancion=43"><br />Esto es un mensaje</a><br />Ejemplo 2<br /><br /></td>
                  <td width="12"></td>
                </tr>
                        </table>

Gracias.