Computer Science, asked by anjukumari15041984, 10 months ago

Write a webpage in HTML displaying background in blue and table background in red

Answers

Answered by Ronithreddy
0

<!DOCTYPE html>

<html>

  <head>

     <title>HTML Tables</title>

  </head>

 

  <body bg color="Blue">

     <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