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

Related Posts :

  • audio audio The HTML audio element is used to play audio files and optionally offer stock control … Read More...
  • article article NOTE: This new element is HTML5 and will be a standardized element in 2014. The art… Read More...
  • b b The HTML <b> element is used to make text inside it render as boldface typ… Read More...
  • aside aside NOTE: This new element is HTML5 and will be a standardized element in 2014. The HTML … Read More...
  • base base The HTML <base> element targets the base URL to put on all relative lin… Read More...

0 Response to "thead"

Post a Comment