๐ฒ HTML Table Generator
| Name | Age | City |
|---|---|---|
| Alice | 30 | Tokyo |
| Bob | 25 | Osaka |
Automatically generate HTML table markup from tab-separated data copied out of a spreadsheet, or from comma-separated data. Includes a live preview so you can check how it looks.
How to use
- Enter your data, one record per line (cells separated by commas or tabs).
- Toggle "First row is header" as needed.
- Copy the generated HTML code with the "Copy" button.
FAQ
Can I paste directly from Excel or Google Sheets?
Yes โ cell ranges copied from a spreadsheet are tab-separated, so pasting them straight into the input box is automatically recognized.
Does this handle cell values that contain commas?
With comma-separated input, a comma inside a cell would be misread as a column separator. For data containing commas, use tab-separated input (pasted from a spreadsheet) instead.
Does the generated HTML include CSS classes?
No โ it generates a plain <table><thead><tbody> structure with no class names or styling. Add those manually if you need them.