Example code for using another table and other tags inside a table cell

Phagu007
Posted by Phagu007 under HTML 5 category on | Points: 40 | Views : 1519
<html>
<head>
<Title>Example code for using another table and other tags inside a table cell.</title>
</head>
<table border="1"> <tr> <td> <table border="1"> <tr> <th>Name</th> <th>Payment</th> </tr>

<tr> <td>Mohan Singh</td> <td>40000</td> </tr> <tr> <td>Sudir Kumar</td>

<td>50000</td> </tr> </table> </td> <td> <ul> <li>It cell represent another cell</li> <li>You

can use list inside this cell</li> </ul> </td> </tr> <tr> <td>Row 2, Col 1</td> <td>Row 2, Col

2</td> </tr> </table>
</html>

Comments or Responses

Login to post response