Computer Science, asked by abhishekkukreti99309, 6 months ago

Which is correct code for displaying table in the web page ?

Answers

Answered by saumitraverma04
0

<!DOCTYPE html>

<html>

 <head>

    <title>HTML Tables</title>

 </head>

 

 <body>

    <table border = "1">

       <tr>

          <td>Row 1, Column 1</td>

          <td>Row 1, Column 2</td>

       </tr>

         

       <tr>

          <td>Row 2, Column 1</td>

          <td>Row 2, Column 2</td>

       </tr>

    </table>

     

 </body>

</html>

Similar questions