thead

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>
 
TechnologyTechnicians
HTMLCraig, Susan, Edward, Ryan
FlashLisa, Anthony, Kevin, Sarah
Unity3DSandeep, Scott, Patricia, Deepak

0 Response to "thead"

Post a Comment