Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table, th, td { padding: 10px; border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <table> <tr> <th>Person</th> <th>Age</th> </tr> <tr> <td>Ann</td> <td>19</td> </tr> <tr> <td>Susie</td> <td>22</td> </tr> </table> </body> </html>