Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/08/2002, 10:34
^CrAzY^
 
Fecha de Ingreso: junio-2002
Mensajes: 100
Antigüedad: 21 años, 10 meses
Puntos: 0
Arreglar HTML

Existe algun programa que me arregle el aspecto de mi código HTML?
o sea, que me corrija esto

Código:
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2">
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2"><img border="0" src="images/spacer.gif" width="1" height="43"></td>
  </tr>
</td>
  </tr>
</table>
para esto

Código:
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2>
      <table border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td colspan="2"><img border="0" src="images/spacer.gif" width="1" height="43"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
:(