I am trying to make a list of services of my business. I imagined two cells on a 16:9 monitor to look like this.
I wanted to do this with a table in HTML:
<table style="width:100%">
  <tr>
    <th>service</th>
    <th>service</th>
  </tr>
  <tr>
    <td>text text text </td>
    <td>text</td>
  </tr>
  <tr>
    <th>service</th>
    <th>service</th>
  </tr>
  <tr>
    <td>text text text text</td>
    <td>text text</td>
  </tr>
</table>
This does work but the longer texts on the right side stop at the beginning of the next service title on the left side. I would like to have the left cell independent from the right.
How could I solve this problem?