Create a table having four header rows with green background colour, four table body rows having light blue colour and two footer rows having light yellow colour. Add table contents on your own.
Answers
Answered by
2
<html> <head> <title>table </title> </head> <body> <th>header</th> <th>header</th> <th>header</th> <th>header</th> <tfoot bgcolor="lightgreen"> </tfoot>
body body body body
foot foot
</body> </html>
Similar questions