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 #666; } </style> </head> <body> <table> <colgroup> <col span="2" style=" width:20%; background-color:#eee;"> <col style="width:10%; background-color:#8ebf42;"> </colgroup> <tr> <th>Name</th> <th>Geschlecht</th> <th>Alter</th> </tr> <tr> <td>Mary Nicolson</td> <td>weiblich</td> <td>19</td> </tr> <tr> <td>John Johnson</td> <td>männlich</td> <td>23</td> </tr> </table> </body> </html>