Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { width: 80%; margin: 30px auto; border-collapse: collapse; } thead { background-color: #1c87c9; color: #ffffff; } th, td { padding: 10px; border: 1px solid #666666; } </style> </head> <body> <table> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Total</td> <td>1500</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>500</td> </tr> <tr> <td>February</td> <td>1000</td> </tr> </tbody> </table> </body> </html>