abbr.Chad Chad;Tank Destroyer Tank Destroyer

html td tag syntax

Function:Define standard cells in HTML tables.

Description: HTML table has two types of cells: header cell - contains header information (created by th element) standard cell - contains data (created by td element) td element The text of usually appears in normal font and left-justified.

Note: Please use the colspan and rowspan attributes to achieve content spanning multiple rows or columns.

html td tag example

<html>
<body>

<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>0</td>
  </tr>
</table>

</body>
</html>

Run Instance?

Click the "Run Instance" button to view the online instance

<html>
<body>

<table border="1">
  <tr>
    <th>name</th>
    <th>job</th>
  </tr>
  <tr>
    <td>滅絕師太</td>
    <td>PHP中文網(wǎng)高級講師</td>
  </tr>
    <tr>
    <td>歐陽克</td>
    <td>PHP中文網(wǎng)講師</td>
  </tr>
    <tr>
    <td>韋小寶</td>
    <td>PHP中文網(wǎng)初級講師</td>
  </tr>
</table>

</body>
</html>

Run instance?

Click the "Run instance" button to view the online instance