I am trying to create a table in HTML. I have the following design to create. I had added a <tr>
inside the <td>
but somehow the table is not created as per the design.
Can anyone suggest me how I can achieve this?
I am unable to create Name1 | Price1 sections.
You must add a full table inside the td
<table>
<tr>
<td>
<table>
<tr>
<td>
...
</td>
</tr>
</table>
</td>
</tr>
</table>