Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> table,th,td{border:1px solid #cccccc} </style> </head> <body> <table> <thead> <tr> <th>Monat</th> <th>Ausgegeben</th> </tr> </thead> <tfoot> <tr> <td>Betrag</td> <td>200$</td> </tr> </tfoot> </table> <tbody> <tr> <td>Juni</td> <td>150$</td> </tr> <tr> <td>Juli</td> <td>50$</td> </tr> </tbody> </body> </html>