📊

HTML Table Generator

Generador gratuito de tablas HTML en línea. Crea tablas HTML responsivas con filas, columnas y estilos CSS personalizados.

<table class="bordered">
  <thead>
    <tr>
      <th>Header 1</th>
      <th>Header 2</th>
      <th>Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Row 1 Col 1</td>
      <td>Row 1 Col 2</td>
      <td>Row 1 Col 3</td>
    </tr>
    <tr>
      <td>Row 2 Col 1</td>
      <td>Row 2 Col 2</td>
      <td>Row 2 Col 3</td>
    </tr>
    <tr>
      <td>Row 3 Col 1</td>
      <td>Row 3 Col 2</td>
      <td>Row 3 Col 3</td>
    </tr>
    <tr>
      <td>Row 4 Col 1</td>
      <td>Row 4 Col 2</td>
      <td>Row 4 Col 3</td>
    </tr>
  </tbody>
</table>
Header 1 Header 2 Header 3
Row 1 Col 1 Row 1 Col 2 Row 1 Col 3
Row 2 Col 1 Row 2 Col 2 Row 2 Col 3
Row 3 Col 1 Row 3 Col 2 Row 3 Col 3
Row 4 Col 1 Row 4 Col 2 Row 4 Col 3