Back Code Run <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <table style="width:100%;border: 1px solid black;"> <thead> <tr> <th colspan="3" style="border: 1px solid black;">Customer</th> </tr> <tr> <th style="border: 1px solid black;">Id</th> <th style="border: 1px solid black;">Name</th> <th style="border: 1px solid black;"> Amount </th> </tr> </thead> <tbody> <tr> <td style="border: 1px solid black;">1</td> <td style="border: 1px solid black;">Aenwoer</td> <td style="border: 1px solid black;">$252</td> </tr> </tbody> <tfoot> <tr> <td style="border: 1px solid black;"></td> <td style="border: 1px solid black;">Total</td> <td style="border: 1px solid black;">$252</td> </tr> </tfoot> </table> </body> </html> Result