Another table
Another table.
Source code example:
Source code example:
<!DOCTYPE html><html><head><style>thead {color:green;} tbody {color:blue;} tfoot {color:red;} table,th,td {border:1px solid black;} </style> </head> <body> <table border="1" style="width:300px"> <thead> <tr> <th>Name</th> <th>Surname</th> <th>Telephone</th> </tr> </thead> <tbody> <tr> <td>Jack</td> <td>Sales</td> <td>555-5555</td> </tr> <tr> <td>John</td> <td>Admin</td> <td>555-5555</td> </tr> <tr> <td>James</td> <td>Sales</td> <td>555-5555</td> </tr> <tbody> <tfoot> <tr> <td>Total</td> <td>Total</td> <td>Total</td> </tr> </tfoot> </table> </body> </html>
Comments
Post a Comment