td

td
HTML td Element
The HTML <td> table cell element is used to designate table cells in a table row <tr>.

HTML CODE EXAMPLE
<table style="width:240px;"> 
  <tr> 
    <td>Cell 1</td> 
    <td>Cell 2</td>
    <td>Cell 3</td>
  </tr> 
  <tr> 
    <td>Cell 4</td> 
    <td>Cell 5</td> 
    <td>Cell 6</td>
  </tr>
  <tr> 
    <td>Cell 7</td> 
    <td>Cell 8</td> 
    <td>Cell 9</td>
  </tr>
</table>
 
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6
Cell 7Cell 8Cell 9

0 Response to "td"

Post a Comment