css - How to create Html table tr inside td -


i trying create table in html. have following design create. had added tr inside td somehow table not created per design.enter image description here

can suggest me how can achieve this.

i unable create rounded area in image

aidans tired u suggested getting enter image description here

here html code

<table>   <tr>    <th></th>     <th>action plan</th>     <th>condition</th>   </tr>  <tr>     </tr>   <tr>  <td>01.</td>     <td>advance payment</td>     <td>$100</td>   </tr>   <tr>  <td>02.</td>     <td>bidding </td>     <td>$80</td>   </tr>     <tr>  <td>03.</td>     <td>sending price & details of vehicle  </td>     <td>$80</td>   </tr>      <tr>  <td>04.</td>     <td>receiving customer confirmation  </td>     <td>$80</td>   </tr>       <tr>  <td>05.</td>     <td>sending invoice & detail sheet lc  </td>     <td>$80</td>   </tr>    <tr>  <td>06.</td>     <td>opening lc bank customer   </td>     <td>$80</td>   </tr>     <tr>  <td>07.</td>     <td>receiving copy of lc  </td>     <td>$80</td>   </tr>     <tr>  <td>08.</td>     <td>sending shipping details   </td>     <td>$80</td>   </tr>      <tr>  <td>09.</td>     <td>sending current details & refunding advance payment   </td>     <td>$80</td>   </tr>    <tr>  <td>10.</td>     <td>receiving balance money customer   </td>     <td>$80</td>   </tr>    <tr>  <td>11.</td>     <td>sending “gramaniladari documents "   </td>     <td>$80</td>   </tr>     <tr>  <td>12.</td>     <td>clearing vehicle documents bank customer.  </td>     <td>$80</td>   </tr>    <tr>  <td>13.</td>         <td><table><tr>                     <td>name1</td>                     <td>price1</td>                 </tr>                  <tr>                     <td>name1</td>                     <td>price1</td>                 </tr>   </table> </td>      <td>$80</td>   </tr>   <tr>   </table> 

try this

   <table width="100%" border="1">    <tr>  <td colspan="3">&nbsp;</td>  <td width="25%">&nbsp;</td>    </tr>    <tr>  <td width="25%">&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>     <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td rowspan="5">&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td width="12%">1</td>  <td width="38%">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>2</td>  <td>&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>3</td>  <td>&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>4</td>  <td>&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>    <tr>  <td>&nbsp;</td>  <td colspan="2">&nbsp;</td>  <td>&nbsp;</td>    </tr>  </table>


Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -