Online HTML Table Generator
Layout
Content
Header Row
Styling
Generated Code
<style>
.custom-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.custom-table th {
background-color: #1f2937;
color: #ffffff;
font-weight: 600;
padding: 12px;
border: 1px solid #e5e7eb;
}
.custom-table td {
padding: 12px;
border: 1px solid #e5e7eb;
transition: background-color 0.2s;
}
.custom-table tr:nth-child(even) {
background-color: #f3f4f6;
}
.custom-table tr:hover td {
background-color: #f9fafb;
}
</style>
<table class="custom-table">
</table>