Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> table, th, td { bordure: 1px solide noir; } </style> </head> <body> <h1>Ajouter une couleur de fond à un tableau</h1> <table style="background-color:#00FF00"> <tr> <th>Mois</th> <th>Économies</th> </tr> <tr> <td>Janvier</td> <td>$100</td> </tr> <tr> <td>Février</td> <td>$80</td> </tr> </table> </body> </html>