<!DOCTYPE html> <html> <head> <style> #design{ background-color:red; color:white; } </style> </head> <body> <table border="1"> <thead id="design"> <tr> <th>Month</th> <th>Expenses</th> </tr> </thead> <tbody> <tr> <td>June</td> <td>$80000</td> </tr> <tr> <td>July</td> <td>$70000</td> </tr> <tr> <td>August</td> <td>$40000</td> </tr> <tr> <td>September</td> <td>$26000</td> </tr> </tbody> <tfoot> <tr> <td>Total</td> <td>254000</td> </tr> </tfoot> </table> </body> </html>
Run
×
Share