https://i.sstatic.net/9y07i.jpg
Is there a way to create a table similar to the one shown above using only HTML and CSS? I've attempted the code below:
<table>
<tr>
<th>XXX</th>
<th>XXX</th>
</tr>
<tr>
<td>XXX</td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td>XXX</td>
</tr>
</table>
Unfortunately, my attempts have been unsuccessful. Can anyone offer assistance?