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

0 Response to "tr"

Post a Comment