Computer Science, asked by Anonymous, 4 months ago

write the html code to generate the following html table

Attachments:

Answers

Answered by kanan04
1

Hope it helps you :-)

!!!!!!!!

Attachments:
Answered by sougatap57
0

Answer:

This is the code:-

<!DOCTYPE html>

<html>

   <head>

       <title>

        table

       </title>

       <style>

           table{

               border-collapse:collapse;

           }

       </style>

   </head>

   <body>

     <table align="center" border="1" cellpadding="5" cellspacing="5" height="200" width="400">

         <tr>

         <tr>

             <td>1</td>

             <td>4</td>

             <td> </td>

         </tr>

         <tr>

             <td>2</td>

             <td>5</td>

             <td>3</td>

         </tr>

          <tr>

              <td>

              </td>

              <td></td>

             <td>6</td>

         </tr>

         </tr>

     </table>

   </body>

</html>

The Output of the code:- We will see the required table.

Similar questions