I have a background in graphic design and I need to design a responsive email signature with an imagine to the left, then on the right column the name, below that the job title and below that the contact details beside each other and below that the icon links.
I'm struggling to get this: phone number | email address (linked seperately)
Here's what I want it to look like

How would the code change? I've been stuck on this for a while.
Here's an example of my current code with the details stacked instead:
<table style="
background-color: #ffffff;
font-family: 'Urbanist Regular';
text-align: left;
color: #000000;
font-size: 14px;
line-height: 21px;
padding: 10px 0px;">
<tbody>
<!-- 4. The Logo -->
<tr style="font-family: 'Roboto Slab',">
<td rowspan="5" style="width:30%; padding-left: 20px"><a href=""><img src="https://uploads-ssl.webflow.com/5f1804fe75d94007d2a35707/61f8f92e2c3842b65d06be34_Teacup-Girl.gif" height="130" width="130"></a></td>
<td rowspan="5" style="width:1px; height: 100px;"></td>
<!-- 5. The Contact Details -->
<td colspan="5" style="font-size: 22px; color: #161616; font-family:'Roboto Slab',Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'; padding-left: 15px; padding-bottom: 3px">NAME SURNAME</td>
</tr>
<tr>
<td colspan="5" style="font-size: 17px; color: #32B8BB; font-family:'Roboto Slab',Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'; padding-left: 15px; padding-bottom: 2px" >Creative Team Lead</td>
</tr>
<tr>
<td colspan="5" style="padding-left: 15px; font-family: 'Lato',Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';"> <a href="tel:" style="text-decoration: none; color:#161616;">+12 34 567 8910</a></td>
</tr>
<tr>
<td colspan="5" style="font-family:'Lato',Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'; padding-left: 15px; padding-bottom: 4px">
<a href="" style="text-decoration: none; color:#161616;">email@company.co.za</a></td>
</tr>
<!-- 6. Social Icons -->
<tr>
<td style="padding-right: 2px; width:28px; height:28px; padding-left: 15px"><a href=""><img src="https://uploads-ssl.webflow.com/5f1804fe75d94007d2a35707/61ee7fe53f6a680535effd5e_Icons-Square-03.jpg" width="28" height="28"></a></td>
<td style="padding-right: 2px; width:28px; "><a href=""><img src="https://uploads-ssl.webflow.com/5f1804fe75d94007d2a35707/61ee7fe4ef420634cee3424b_Icons-Square-02.jpg" width="28" height="28"></a></td>
<td style="padding-right: 2px; width:28px"><a href=""><img src="https://uploads-ssl.webflow.com/5f1804fe75d94007d2a35707/61ee8399cff0471925fc9d71_Icons%20Square-04.png" width="28" height="28"></a></td>
<td></td>
</tr>
</tbody>
</table>