Tuesday, April 23, 2024

HTML colsapn and rowspan in table header - table with multiple headers

 <!DOCTYPE html>

<html>

<head>

</head>

<body>

<table style="width:100%">

<tr>

    <th rowspan="3">SL.No.</th>

    <th rowspan="3">ZONE</th>

    <th rowspan="3">BRANCH (Cummulative MPR)</th>

    <th rowspan="3">CODE</th>

    <th rowspan="1" colspan="4">REGISTRATION</th>

    <th rowspan="1" colspan="2">PENDING INV.</th>

    <th rowspan="3" >CASES PEND SANCTION</th>

    <th rowspan="1" colspan="9">INVESTIGATION DISPOSAL</th>

    <th rowspan="3">COURT CASE WISE PENDING TRIAL</th>

    <th rowspan="1" colspan="10">COURT CASE WISE TRIAL DISPOSAL</th>

    <tr>

    <!--REGISTRATION-->

      <th rowspan="2">VARIATION</th>

      <th rowspan="2">ANNUAL TARGETS</th>

      <th rowspan="2">PROPORTIONATE TARGETS</th>

      <th rowspan="2">ACHIVEMENTS</th>

      <!--REGISTRATION-->

      <!--PENDING INV.-->

      <th rowspan="2">TOTAL PENDING</th>

      <th rowspan="2">PEND. OVER 1 YEARS</th>

      <!--PENDING INV.-->

      <!--INVESTIGATION DISPOSAL-->

      <th rowspan="2">ANNUAL TARGETS</th>

      <th rowspan="2">PROPORTIONATE TARGETS</th>

      <th rowspan="1" colspan="5">ACHIEVEMENTS</th>

      <th rowspan="2"> ACHIEVEMENTS (I+ii+iii+iv+v)</th>

      <th rowspan="2">VARIATION</th>

      <!--INVESTIGATION DISPOSAL-->

      <!--COURT CASE WISE TRIAL DISPOSAL-->

      <th rowspan="2">ANNUAL TARGETS</th>

      <th rowspan="2">PROPORTIONATE TARGETS</th>

      <th rowspan="1" colspan="5">ACHIEVEMENTS</th>

      <th rowspan="2"> ACHIEVEMENTS (a+b+c+d)</th>

      <th rowspan="2">VARIATION</th>

      <th rowspan="2">Conv Rate</th>

      <!--COURT CASE WISE TRIAL DISPOSAL-->

     

    </tr> 

    <tr>

     <!--INVESTIGATION DISPOSAL ACHIEVEMENTS-->

       <th rowspan="1">TRIAL</th>

       <th rowspan="1">RDA</th>

       <th rowspan="1">TRIAL/RDA</th>

       <th rowspan="1">CLOSED</th>

       <th rowspan="1">OTHERS</th>

       <!--INVESTIGATION DISPOSAL ACHIEVEMENTS-->

       <!--COURT CASE WISE TRIAL DISPOSAL ACHIEVEMENTS-->

       <th rowspan="1">CONVICTION</th>

       <th rowspan="1">ACQUITTAL</th>

       <th rowspan="1">DISCHARGE </th>

       <th rowspan="1">OTHERS</th>

       <!--COURT CASE WISE TRIAL DISPOSAL ACHIEVEMENTS-->

  </tr>

 </tr>

  

</table>

</body>

</html>


No comments:

Post a Comment