All tools

HTML Table Builder

Visual builder for HTML table markup.

HTML
<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Role</th>
      <th>City</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Ada</td>
      <td>Engineer</td>
      <td>London</td>
    </tr>
    <tr>
      <td>Linus</td>
      <td>Hacker</td>
      <td>Helsinki</td>
    </tr>
  </tbody>
</table>

About

Set rows and columns, fill in cells, optionally add a header row. Get the HTML output. Faster than typing the markup by hand.

How to use

  1. Set rows and columns.
  2. Type into cells.
  3. Copy the HTML.

FAQ

Does it generate semantic markup?+

Yes. Headers go in thead with th, body rows go in tbody with td. Proper structure for accessibility.

Can I import a CSV?+

Yes. Paste CSV in the import field, it fills in cells.