I want to assign background color to my code but it is not working plz examine and find error
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <table border="4"> <form action="" method=""> <tr> <td bg color="red"> <input type="text" value="" placeholder="name"> </td> <td> name </td> </tr> <tr bg color="red"> <td> <input type="password" value="" placeholder="password"> </td> <td> password </td> </tr> <tr> <td> <input type ="radio" value="gender" name=maleorfemale> male </td> </tr> <tr> <td> <input type="radio" value=gender name="maleorfemale"> female </td> </tr> </table> </body> </html>