Computer Science, asked by deveshbajpai234, 6 months ago

create the following table by html coding as shown in image it's urgent please do it correctly use rowspan and colspan​

Attachments:

Answers

Answered by srajfaroquee
4

HTML Codes

<html>    

   <head>

       <style type="text/css">

           table, th, td {

                       border: 1px solid black;

                       border-collapse: collapse;

                       padding: 50px;

                       text-align: center;

                   }

       </style>

   </head>

   <body>

       <table align="center">

           <tr>

               <td>A</td>

               <td>B</td>

               <td>C</td>

               <td rowspan="2" colspan="2">D</td>

           </tr>

           <tr>

               <td>E</td>

               <td >F</td>

               <td>G</td>

           </tr>

           <tr>

               <td>H</td>

               <td>I</td>

               <td colspan="2">J</td>

           </tr>

           <tr>

               <td colspan="4" >K</td>

           </tr>

       </table>    

   </body>

</html>

**Please mark this ans as Brainliest answer!

Similar questions