PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> thead {color:rgb(0 76 255);} tbody {color:rgb(255 0 233);} tfoot {color:#607D8B;} table, th, td { border: 1px solid black; } </style> </head> <body> <table> <thead> <tr> <th>expenses</th> <th>amount spent</th> </tr> </thead> <tbody> <tr> <td>home rent</td> <td>$100</td> </tr> <tr> <td>road fare</td> <td>$250</td> </tr> </tbody> <tfoot> <tr> <td>Food</td> <td>$80</td> </tr> </tfoot> </table> </body> </html>