I am facing an issue trying to align a table inline with the p tag
in my HTML code. I have attempted to make minimal changes to achieve this, but it is not working as expected. Here is the code I have tried:
<p>ABCD</p>
<table style = display: inline;>
<tbody>
<tr>
<td>State </td>
<td>Capital </td>
<td>Zip </td>
</tr>
<tr>
<td>New Yrk </td>
<td>Alba ny </td>
<td>13210 </td>
</tr>
</tbody>
</table>