Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> th, td { padding: 10px; border: 1px solid #666; } </style> </head> <body> <table style="width:80%; margin:30px auto; border-collapse:collapse;"> <thead style="background-color:#1c87c9; color:#fff;"> <tr> <th>Mois</th> <th>Des économies</th> </tr> </thead> <tfoot> <tr> <td>Total</td> <td>1500</td> </tr> </tfoot> <tbody> <tr> <td>Janvier</td> <td>500</td> </tr> <tr> <td>Février</td> <td>1000</td> </tr> </tbody> </table> </body> </html>