File formats / 11 formats, every pair
CSV to HTML converter
Turn CSV into HTML — a `table` element with a head and a body — in this browser tab. Paste your CSV, copy the HTML: the quoting and escaping HTML needs are applied for you.
CSV to HTML, worked out
3 rows and 4 columns: 4 lines of CSV become 30 lines of HTML.
CSV in
product,region,units,unit price Desk lamp,EU,128,24.50 Chair,R&D,64,98.00 Monitor,APAC,32,249.99
HTML out
<table>
<thead>
<tr>
<th style="text-align: left;">product</th>
<th style="text-align: left;">region</th>
<th style="text-align: right;">units</th>
<th style="text-align: right;">unit price</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">Desk lamp</td>
<td style="text-align: left;">EU</td>
<td style="text-align: right;">128</td>
<td style="text-align: right;">24.50</td>
</tr>
<tr>
<td style="text-align: left;">Chair</td>
<td style="text-align: left;">R&D</td>
<td style="text-align: right;">64</td>
<td style="text-align: right;">98.00</td>
</tr>
<tr>
<td style="text-align: left;">Monitor</td>
<td style="text-align: left;">APAC</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">249.99</td>
</tr>
</tbody>
</table>HTML result
<table>
<thead>
<tr>
<th style="text-align: left;">product</th>
<th style="text-align: left;">region</th>
<th style="text-align: right;">units</th>
<th style="text-align: right;">unit price</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">Desk lamp</td>
<td style="text-align: left;">EU</td>
<td style="text-align: right;">128</td>
<td style="text-align: right;">24.50</td>
</tr>
<tr>
<td style="text-align: left;">Chair</td>
<td style="text-align: left;">R&D</td>
<td style="text-align: right;">64</td>
<td style="text-align: right;">98.00</td>
</tr>
<tr>
<td style="text-align: left;">Monitor</td>
<td style="text-align: left;">APAC</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">249.99</td>
</tr>
</tbody>
</table>Conversions next to this one
Next in this job
Chosen from where these tools sit in the catalogue — the same workbench, the same category, the same words. Nothing here measures what you or anyone else opened.
- CSV to LaTeX converterConvert CSV to LaTeX in your browser.Next along in the same workbench
- CSV to Markdown converterConvert CSV to Markdown in your browser.Next along in the same workbench
- HTML to CSV converterConvert HTML to CSV in your browser.Another HTML tool
- File to HTML converterTurn images into email-ready HTML with the images packaged alongside it, or into one standalone web page.Another HTML tool