Answers for "th tr td"

3

html th td

<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>John</td>
    <td>19</td>
  </tr>
  <tr>
    <td>Chris</td>
    <td>25</td>
  </tr>
</table>
Posted by: Guest on July-17-2021
0

table tr th td

<table>
    <tr>
        <th>Nom</th>
        <th>Prenom</th>
        <th>Sexe</th>
        <th>Age</th>
    </tr>
    <tr>
        <td>Jean</td>
        <td>Charles</td>
        <td>Masculin</td>
        <td>25 ans</td>
    </tr>
    <tr>
        <td>Jackson</td>
        <td>Louis</td>
        <td>Masculin</td>
        <td>24 ans</td>
    </tr>
    <tr>
        <td>Pierre</td>
        <td>Wesly</td>
        <td>Masculin</td>
        <td>25 ans</td>
    </tr>
    <tr>
        <td>Junia</td>
        <td>Pierre</td>
        <td>feminin</td>
        <td>25 ans</td>
    </tr>
</table>
Posted by: Guest on September-17-2021
0

html tables

<table></table>
    <td></td> <!-- td is a table cell-->
    <tr></tr> <!-- tr is a table row-->
    <th></th> <!-- th is the table header -->
    <thead></thead><tbody></tbody><tfoot></tfoot> <!-- table semantic -->
    <tr rowspan="2"></tr><!-- Span a row -->
    <tr colspan="2"></tr><!-- Span a column -->
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language