Table No-01
01
02 03 07
04
05 06
08 09

Table No-02
01
090203
05
0607
08 10

Table No-03
Name: Bill Gates
Telephone: 55577854
55577855

Responsive image Responsive image

Responsive image

<!DOCTYPE html> <html> <head> <title></title> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 5px; text-align: center; } </style> </head> <body> <p> <table style="width: 40%"> <caption>Table No-01</caption> <tr> <td colspan="3">01</td> </tr> <tr> <td>02</td> <td>03</td> <td rowspan="3">07</td> </tr> <tr> <td> </td> <td>04</td> </tr> <tr> <td>05</td> <td>06</td> </tr> <tr > <td colspan="2">08</td> <td>09</td> </tr> </table> </p> <p> <table style="width: 40%"> <caption>Table No-02</caption> <tr> <td colspan="3">01</td> </tr> <tr> <td rowspan="3">09</td><td>02</td><td>03</td> </tr> <tr> <td></td> <td>05</td> </tr> <tr> <td>06</td><td>07</td> </tr> <tr> <td>08</td> <td colspan="2"> 10</td> </tr> </table> </p> <p> <table style="width:100%"> <caption>Table No-03</caption> <tr> <th>Name:</th> <td>Bill Gates</td> </tr> <tr> <th rowspan="2">Telephone:</th> <td>55577854</td> </tr> <tr> <td>55577855</td> </tr> </table> </p> </body> </html>