Mundo
del Programador

Tablas


Hay 2 tipos de tablas: simples y complejas

Tabla simple


         <table>
          <tr>
           <td>Lunes</td>
           <td>Miercoles</td>
          </tr>
          <tr>
           <td>Curso Html</td>
           <td>Curso Css</td>
          </tr>
          <tr>
           <td>2 h</td>
           <td>2 h</td>
          </tr>
         </table>
        

Tabla compleja


         <table>
         <thead>
          <tr>
           <th>Lunes</th>
           <th>Miercoles</th>
          </tr>
         </thead>

         <tfoot>
          <tr>
           <td>2 h</td>
           <td>2 h</td>
          </tr>
         </tfoot>

         <tbody>
          <tr>
           <td>Curso Html</td>
           <td>Curso Css</td>
          </tr>
         </tbody>
         </table>
        

A las tablas se les pueden poner un titulo con la etiqueta <caption>

Ejercicios resueltos en github



Siguiente
Anterior