HTML Table Generator
Visually build custom HTML tables, edit content live, and export clean HTML & CSS code.
HTML Code
<table class="custom-table table-bordered table-striped text-left">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
<td>Row 1, Cell 3</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
<td>Row 2, Cell 3</td>
</tr>
<tr>
<td>Row 3, Cell 1</td>
<td>Row 3, Cell 2</td>
<td>Row 3, Cell 3</td>
</tr>
</tbody>
</table> CSS Styles
.custom-table {
width: 100%;
border-collapse: collapse;
text-align: left;
font-family: sans-serif;
}
.custom-table th, .custom-table td {
padding: 12px 16px;
border: 1px solid #e2e8f0;
}
.custom-table th {
background-color: #0f172a;
color: #ffffff;
font-weight: 600;
}
.custom-table tbody tr:nth-child(even) {
background-color: #f8fafc;
}