Answers for "how to set up a table html"

3

how to create a table html

<table>
  <tr>
    <td>First cell of the first row</td>
    <td>Second cell of first row</td>
  </tr>
  <tr>
    <td>First cell of second row</td>
    <td>Second cell of second row</td>
  </tr>
</table>
Posted by: Guest on March-07-2021

Browse Popular Code Answers by Language