Computer Science, asked by vijet97, 9 months ago

help me crate the table using html coding plzzz​

Attachments:

Answers

Answered by snowf1235
0

Answer:

<head>

     <title>table</title>

  </head>

 

  <body>

     <table border = "1">

         

        <tr>

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

        <td colspan="3">Student</td>            

        </tr>

         

        <tr>

        <td>boys</td>

           <td>girls</td>

           <td>total</td>

        </tr>

                       

        <tr>

           <td>2006</td>

           <td>55</td>

           <td>75</td>

           <td>130</td>

        </tr>

         

        <tr>

           <td>2007</td>

           <td>75</td>

           <td>95</td>

           <td>170</td>

        </tr>

         

     </table>

  </body>

 

</html>

Similar questions