thead
HTML thead Element
The HTML <thead> table heading group element is used to group table headers.
HTML CODE EXAMPLE
<table border="1">
<thead style="color:#900;">
<tr>
<th>Technology</th>
<th>Technicians</th>
</tr>
</thead>
<tbody>
<tr>
<td>HTML</td>
<td>Craig, Susan, Edward, Ryan</td>
</tr>
<tr>
<td>Flash</td>
<td>Lisa, Anthony, Kevin, Sarah</td>
</tr>
<tr>
<td>Unity3D</td>
<td>Sandeep, Scott, Patricia, Deepak</td>
</tr>
</tbody>
</table>
<thead style="color:#900;">
<tr>
<th>Technology</th>
<th>Technicians</th>
</tr>
</thead>
<tbody>
<tr>
<td>HTML</td>
<td>Craig, Susan, Edward, Ryan</td>
</tr>
<tr>
<td>Flash</td>
<td>Lisa, Anthony, Kevin, Sarah</td>
</tr>
<tr>
<td>Unity3D</td>
<td>Sandeep, Scott, Patricia, Deepak</td>
</tr>
</tbody>
</table>
Technology | Technicians |
---|---|
HTML | Craig, Susan, Edward, Ryan |
Flash | Lisa, Anthony, Kevin, Sarah |
Unity3D | Sandeep, Scott, Patricia, Deepak |
0 Response to "thead"
Post a Comment