how do I make a graph like this using html rowspan and colsp
how do I make a graph like this using html. rowspan and colspan
Solution
HTML code below
<html>
</body>
<table border=\"1\" STYLE=\"text-align:center\" width=\"50%\">
<tr>
<th rowspan=\"2\" colspan=\"2\">  </th>
<th colspan=\"2\">       </th>
<th>    </th>
</tr>
<tr>
<th>    </th>
<th>   </th>
<th>   </th>
</tr>
<tr>
<th rowspan=\"3\">   </td>
<td>   </td>
<td>  </td>
<td>  </td>
<td>   </td>
</tr>
<tr>
<td>  </td>
<td>  </td>
<td>  </td>
<td>  </td>
</tr>
<tr>
<td>    </td>
<td>    </td>
<td>    </td>
<td>    </td>
<tr>
</table>
</body>
<html>
-------------------------------------------------------------------------------------------
if you want to add data in table, you can add them in place of  
------
