Widget Guide
Convert CSV rows into clean, readable HTML tables for pages, docs, and directories.
| Item | Location | Year |
|---|---|---|
| Archive Folder A | London | 1924 |
| Photo Collection B | Paris | 1931 |
| Document Set C | Berlin | 1940 |
<table>
<thead><tr><th>Item</th><th>Location</th><th>Year</th></tr></thead>
<tbody>
<tr><td>Archive Folder A</td><td>London</td><td>1924</td></tr>
<tr><td>Photo Collection B</td><td>Paris</td><td>1931</td></tr>
</tbody>
</table>