Tablas

De Reyesoft

Tablas y W3C XHTML 1.1

Tabla sencilla

<table>
 <caption>Nombre de la tabla</caption>
  <tr>
  <th scope="col">COLUMNA 1</th>
  <th scope="col">COLUMNA 2</th>
 </tr>
 <tr>
  <td>DATOS 1</td>
  <td>DATOS 2</td>
 </tr>
 <tr>
  <td>DADOS 3</td>
  <td>DADOS 4</td>
 </tr>
</table>

Tabla

<table>
 <caption>Nombre de la tabla</caption>
 <thead>
  <tr>
   <th scope="col">COLUMNA 1</th>
   <th scope="col">COLUMNA 2</th>
  </tr>
 </thead>
 <tfoot>
  <tr>
   <th scope="col">PIE 1</th>
   <th scope="col">PIE 2</th>
  </tr>
 </tfoot>
 <tbody>
  <tr>
   <td>DATOS 1</td>
   <td>DATOS 2</td>
  </tr>
  <tr>
   <td>DATOS 3</td>
   <td>DATOS 4</td>
  </tr>
 </tbody>
</table>
Herramientas personales