tr

tr
HTML tr Element
The HTML <tr> table row element is used to start a new row of either <td> or <th> cells in a <table>.

HTML CODE EXAMPLE
<table border="1">
  <tr>
    <th>Row 1 Cell 1</th>
    <th>Row 1 Cell 2</th>
    <th>Row 1 Cell 3</th>
  </tr>
  <tr>
    <td>Row 2 Cell 1</td>
    <td>Row 2 Cell 2</td>
    <td>Row 2 Cell 3</td>
  </tr>
  <tr>
    <td>Row 3 Cell 1</td>
    <td>Row 3 Cell 2</td>
    <td>Row 3 Cell 3</td>
  </tr>
</table>
 
Header 1Header 2Header 3
Row 2 Cell 1Row 2 Cell 2Row 2 Cell 3
Row 3 Cell 1Row 3 Cell 2Row 3 Cell 3

Related Posts :

  • mark mark HTML mark Element NOTE: This new element is HTML5 and will be a standardized elemen… Read More...
  • map map HTML map Element The HTML <map> image map element is used to designate&nbs… Read More...
  • legend legend HTML legend Element The HTML <legend> element is used to apply a caption… Read More...
  • li li HTML li Element The HTML <li> list item element is used to render lists, and… Read More...
  • link link HTML link Element The HTML <link> element is used to specify relationships between y… Read More...

0 Response to "tr"

Post a Comment