HTML Tables
π Introduction to HTML Tables
HTML tables allow you to arrange data into rows and columns, just like in spreadsheets. Tables are commonly used to present tabular data such as pricing, schedules, and reports.
>>"Tables turn raw data into readable, structured content." π§
π§ Basic Table Structure
An HTML table is created using the <table> element along with child elements:
- <table> β Defines the table
- <tr> β Table row
- <th> β Table header cell
- <td> β Table data cell
Basic Table Example
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Jane</td>
<td>28</td>
</tr>
<tr>
<td>John</td>
<td>32</td>
</tr>
</table>π Adding Table Borders
You can add a border to make the table visually clearer:
Table with Border
<table border="1">
<tr>
<th>Country</th>
<th>Capital</th>
</tr>
<tr>
<td>India</td>
<td>New Delhi</td>
</tr>
</table>Note
π‘ Modern practice prefers using CSS for styling instead of the border attribute.
π§© Advanced Table Elements
- <thead> β Groups the header content
- <tbody> β Groups the body content
- <tfoot> β Groups the footer content
- <caption> β Adds a title to the table
Structured Table Example
<table>
<caption>Student Grades</caption>
<thead>
<tr>
<th>Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice</td>
<td>A</td>
</tr>
<tr>
<td>Bob</td>
<td>B+</td>
</tr>
</tbody>
</table>π Column and Row Span
Use colspan and rowspan attributes to merge cells:
Using Colspan and Rowspan
<table border="1">
<tr>
<th rowspan="2">Name</th>
<th colspan="2">Marks</th>
</tr>
<tr>
<th>Math</th>
<th>Science</th>
</tr>
<tr>
<td>Emma</td>
<td>95</td>
<td>88</td>
</tr>
</table>Note
β οΈ Use colspan and rowspan carefully to ensure accessibility and clarity.
π¨ Styling Tables with CSS
CSS Styling for Tables
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 12px;
border: 1px solid #ccc;
text-align: left;
}
thead {
background-color: #f5f5f5;
}Applying these styles makes your table cleaner and more readable.
π§ͺ Use Case Example: Product List
| Product | Price | Stock |
|---|---|---|
| Laptop | $999 | Available |
| Smartphone | $499 | Out of Stock |
| Headphones | $199 | Available |
π Learn More
>>βGood tables donβt just display data β they make it understandable.β π