I'm working with two tables in html, but they don't look the same in Outlook as they do on the web. Please see the image below for reference on how the table should be set up. Is there other way to use aside from margin code in css.
Image on Outlook: There's no space between two table
Image when using web: https://i.stack.imgur.com/MTY3v.jpg
<body>
<table>
<tr>
<td class="htitle">
<br> <b style="font-size: 22px;"> </b></br>
</td>
</tr>
</table>
<div>
<table>
<tr>
<td>
<p style='margin-left: 20pt;margin-top: 15pt;margin-right: 20pt;'>Hi, <b>[username]</b></p>
</td>
</tr>
</table>
</div>
</body>
</html>
Above is my sample code