Home Table List Profile

How to make a table:

<table border="1">
  <tr style="background-color:LightBlue;">
    <th> row one (header) - header one </th>
    <th> row one (header) - header two </th>
    <th> row one (header) - header three </th>
  </tr>
  <tr>
    <td> row two / column one </td>
    <td> row two / column two </td>
    <td> row two / column three </td>
  </tr>
  <tr>
    <td> row three / column one </td>
    <td> row three / column two </td>
    <td> row three / column three </td>
  </tr>
</table>



row one (header) - header one row one (header) - header two row one (header) - header three
row two / column one row two / column two row two / column three
row three / column one row three / column two row three / column three