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

Related Posts :

  • figcaption figcaption NOTE: This new element is HTML5 and will be a standardized element in 2014. The… Read More...
  • figure figure NOTE: This new element is HTML5 and will be a standardized element in 2014. The HTM… Read More...
  • fieldset fieldset The HTML <fieldset> element is usually used within the <form> ele… Read More...
  • embed embed NOTE: This new element is HTML5 and will be a standardized element in 2014. The … Read More...
  • em em The HTML <em> emphasis element is used to place emphasis on text. HTML CODE … Read More...

0 Response to "td"

Post a Comment