Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
tables
0918table_thead_tbody_tfoot.html
0918table_thead_tbody_tfoot.html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Table THEAD, TBODY, TFOOT</title> <style> thead {color:green;background:white;} tbody {color:blue;} tfoot {color:red;background:white;} table {border:1px solid green;} th,td{border:1px solid orange;} </style> </head> <body bgcolor="#A3EBA6"> <table> <thead> <tr> <th>Month</th> <th>Price</th> </tr> </thead> <tbody> <tr> <td>January</td> <td>100 €</td> </tr> <tr> <td>February</td> <td>80 €</td> </tr> </tbody> <tfoot> <tr> <td>Total price:</td> <td>180 €</td> </tr> </tfoot> </table> </body> </html>
Reload page
Preview
W3C validation
Edit Code