I am struggling to include a column span paragraph in my table and then display the actual table values below it
You can see what I am attempting to achieve in this image
https://i.sstatic.net/VpmTH.png
<table>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>
WHATEVER TEXT
</td>
<tr>
<td>He</td>
<td>He</td>
<td>He</td>
</tr>
</tr>
</tbody>
</table>