Answers for "add table in 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
0

how to align table in html

.centerTable { margin: 0px auto; }
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language