HTML Table Generator
Build an HTML table with alignment, headers, and feature flags.
Free & unlimited
Options
Table
| H | ||||
| 1 | ||||
| 2 | ||||
| 3 |
HTML output
3 × 3<div class="table-responsive" style="overflow-x:auto;">
<table class="data-table striped bordered">
<thead>
<tr>
<th>Feature</th>
<th style="text-align:center">Basic</th>
<th style="text-align:center">Pro</th>
</tr>
</thead>
<tbody>
<tr>
<td>Price</td>
<td style="text-align:center">$9</td>
<td style="text-align:center">$29</td>
</tr>
<tr>
<td>Users</td>
<td style="text-align:center">1</td>
<td style="text-align:center">10</td>
</tr>
<tr>
<td>Storage</td>
<td style="text-align:center">10 GB</td>
<td style="text-align:center">100 GB</td>
</tr>
</tbody>
</table>
</div>All processing happens in your browser. No data is sent to any server.
About this tool
- 1
Set table size
Enter the number of rows and columns for your table.
- 2
Edit cells
Click any cell to edit its content. Toggle header row for th elements.
- 3
Style the table
Customize borders, colors, zebra striping, and hover effects.
- 4
Export
Copy as clean HTML, Markdown, CSV, or JSON.
- Import CSV data to auto-populate the table with existing data.
- The responsive toggle wraps the table in a scrollable div for mobile.
- Use the live HTML preview to see the exact code you will copy.
- Visual WYSIWYG editor
- Header row toggle
- Style controls
- CSV import
- Export as HTML, Markdown, CSV, JSON
- Responsive wrapper
- Creating HTML tables for web pages without coding
- Converting CSV data to an HTML table
- Building styled tables for emails or documentation